
    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_2bbfa6d5d43ef17747f63fd0.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_92cce5e0292be3de50ec4848.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_bdaafc524028381bc07b479b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970368;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_57bd77d58075431874a93f53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_dd59ec97dca2b0c16b977026.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_804556ff215b4e1a4c7ef40a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976210;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_981e58805032aae112e65caf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c36c6a6a7ee3af46fad54567.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_41a41bb5694e353ed21a755b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_03ce817a8d1cd1079a10ae60.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.146973;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_b35bfb9ce843c68ab60fb34e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cec523ffe252aa7cd400df44.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961069;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_e656880ef0971f638f5580ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.770020;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_55116e8d58497c04612e25c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969806;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2cc3e25c93bbe092d96a9bde.woff2')format("woff");}.fff{font-family:fff;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29bccefa5fc78b817f38063d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.970862;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:-37.536000px;}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.056000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls15{letter-spacing:-8.316000px;}
.ls20{letter-spacing:-7.236000px;}
.ls14{letter-spacing:-4.320000px;}
.ls19{letter-spacing:-3.240000px;}
.ls13{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.026000px;}
.ls23{letter-spacing:-0.918000px;}
.ls27{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.840000px;}
.ls26{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.691200px;}
.ls28{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.600000px;}
.ls22{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.489720px;}
.ls24{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.408000px;}
.ls29{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.279840px;}
.ls11{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.104940px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.680000px;}
.ls1e{letter-spacing:3.132000px;}
.ls1f{letter-spacing:4.320000px;}
.ls16{letter-spacing:4.374000px;}
.ls1a{letter-spacing:6.885000px;}
.ls18{letter-spacing:7.614000px;}
.ls17{letter-spacing:9.720000px;}
.ls1{letter-spacing:42.345564px;}
.ls0{letter-spacing:42.346164px;}
.lsa{letter-spacing:244.464000px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.wsf7{word-spacing:-16.434000px;}
.ws4{word-spacing:-14.940000px;}
.ws67{word-spacing:-14.880000px;}
.wsb0{word-spacing:-14.820000px;}
.ws27{word-spacing:-14.700000px;}
.ws6f{word-spacing:-14.520000px;}
.wsd1{word-spacing:-14.340000px;}
.ws6{word-spacing:-14.100000px;}
.ws4c{word-spacing:-13.980000px;}
.wsa3{word-spacing:-13.446000px;}
.ws60{word-spacing:-13.392000px;}
.wsae{word-spacing:-13.230000px;}
.ws138{word-spacing:-13.176000px;}
.ws125{word-spacing:-13.068000px;}
.ws8c{word-spacing:-12.960000px;}
.ws10c{word-spacing:-12.906000px;}
.ws139{word-spacing:-12.744000px;}
.ws126{word-spacing:-12.528000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws89{word-spacing:-11.952000px;}
.ws53{word-spacing:-11.904000px;}
.ws4f{word-spacing:-11.856000px;}
.ws52{word-spacing:-11.760000px;}
.ws1{word-spacing:-11.596800px;}
.ws9{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws26{word-spacing:-10.800000px;}
.wsaf{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.wsa1{word-spacing:-9.126000px;}
.ws141{word-spacing:-8.802000px;}
.ws70{word-spacing:-8.675040px;}
.ws71{word-spacing:-8.570100px;}
.ws13a{word-spacing:-8.478000px;}
.ws66{word-spacing:-8.395200px;}
.ws68{word-spacing:-8.185320px;}
.ws4d{word-spacing:-7.807536px;}
.wsf3{word-spacing:-6.210000px;}
.wsa2{word-spacing:-5.130000px;}
.ws57{word-spacing:-4.320000px;}
.ws151{word-spacing:-3.186000px;}
.ws5d{word-spacing:-3.180000px;}
.ws12d{word-spacing:-3.024000px;}
.ws13f{word-spacing:-2.970000px;}
.ws1c{word-spacing:-2.880000px;}
.wscd{word-spacing:-2.820000px;}
.ws44{word-spacing:-2.760000px;}
.wsbe{word-spacing:-2.754000px;}
.ws45{word-spacing:-2.700000px;}
.wsd8{word-spacing:-2.640000px;}
.wsa4{word-spacing:-2.592000px;}
.ws25{word-spacing:-2.580000px;}
.wsa5{word-spacing:-2.538000px;}
.wsbd{word-spacing:-2.520000px;}
.ws19{word-spacing:-2.484000px;}
.ws84{word-spacing:-2.460000px;}
.ws127{word-spacing:-2.430000px;}
.ws30{word-spacing:-2.400000px;}
.wsb8{word-spacing:-2.340000px;}
.ws1a{word-spacing:-2.322000px;}
.ws4b{word-spacing:-2.280000px;}
.wsf6{word-spacing:-2.268000px;}
.ws35{word-spacing:-2.220000px;}
.ws103{word-spacing:-2.214000px;}
.wseb{word-spacing:-2.160000px;}
.ws78{word-spacing:-2.100000px;}
.ws114{word-spacing:-2.052000px;}
.wsc2{word-spacing:-2.040000px;}
.wsca{word-spacing:-1.980000px;}
.ws121{word-spacing:-1.944000px;}
.wsa0{word-spacing:-1.920000px;}
.ws10a{word-spacing:-1.890000px;}
.ws3e{word-spacing:-1.860000px;}
.ws149{word-spacing:-1.836000px;}
.wsb7{word-spacing:-1.800000px;}
.ws129{word-spacing:-1.782000px;}
.ws12a{word-spacing:-1.728000px;}
.ws96{word-spacing:-1.680000px;}
.ws11b{word-spacing:-1.674000px;}
.wsdc{word-spacing:-1.620000px;}
.ws48{word-spacing:-1.560000px;}
.wsdd{word-spacing:-1.440000px;}
.ws106{word-spacing:-1.404000px;}
.wsdb{word-spacing:-1.380000px;}
.ws14c{word-spacing:-1.350000px;}
.ws99{word-spacing:-1.320000px;}
.ws119{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.242000px;}
.ws22{word-spacing:-1.200000px;}
.ws110{word-spacing:-1.188000px;}
.wsbf{word-spacing:-1.140000px;}
.ws111{word-spacing:-1.134000px;}
.ws105{word-spacing:-1.026000px;}
.ws43{word-spacing:-1.020000px;}
.ws56{word-spacing:-0.960000px;}
.ws5e{word-spacing:-0.918000px;}
.ws5f{word-spacing:-0.912000px;}
.ws7f{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.780000px;}
.ws12{word-spacing:-0.756000px;}
.wsbc{word-spacing:-0.720000px;}
.wsd2{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.648000px;}
.ws3c{word-spacing:-0.600000px;}
.ws135{word-spacing:-0.594000px;}
.wsa6{word-spacing:-0.540000px;}
.ws11d{word-spacing:-0.486000px;}
.wsd4{word-spacing:-0.480000px;}
.ws7b{word-spacing:-0.420000px;}
.wsb{word-spacing:-0.408000px;}
.ws94{word-spacing:-0.300000px;}
.wse4{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.180000px;}
.ws29{word-spacing:-0.120000px;}
.ws9a{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws133{word-spacing:0.108000px;}
.ws2e{word-spacing:0.120000px;}
.ws3f{word-spacing:0.180000px;}
.wsff{word-spacing:0.216000px;}
.wsfe{word-spacing:0.240000px;}
.ws87{word-spacing:0.270000px;}
.ws20{word-spacing:0.300000px;}
.ws12c{word-spacing:0.324000px;}
.wsc9{word-spacing:0.360000px;}
.ws142{word-spacing:0.378000px;}
.ws9f{word-spacing:0.420000px;}
.ws40{word-spacing:0.480000px;}
.ws137{word-spacing:0.486000px;}
.ws46{word-spacing:0.540000px;}
.ws1d{word-spacing:0.600000px;}
.ws140{word-spacing:0.648000px;}
.wsf{word-spacing:0.691200px;}
.ws13c{word-spacing:0.702000px;}
.ws59{word-spacing:0.720000px;}
.wsac{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws132{word-spacing:0.864000px;}
.ws73{word-spacing:0.900000px;}
.ws107{word-spacing:0.918000px;}
.ws23{word-spacing:0.960000px;}
.ws58{word-spacing:1.020000px;}
.ws143{word-spacing:1.026000px;}
.ws42{word-spacing:1.080000px;}
.ws8d{word-spacing:1.134000px;}
.ws116{word-spacing:1.188000px;}
.ws6d{word-spacing:1.200000px;}
.ws13d{word-spacing:1.242000px;}
.ws10b{word-spacing:1.296000px;}
.wsfd{word-spacing:1.320000px;}
.ws100{word-spacing:1.350000px;}
.ws31{word-spacing:1.380000px;}
.ws112{word-spacing:1.404000px;}
.ws2f{word-spacing:1.440000px;}
.ws113{word-spacing:1.458000px;}
.ws4a{word-spacing:1.500000px;}
.ws11a{word-spacing:1.512000px;}
.wsc4{word-spacing:1.560000px;}
.wscb{word-spacing:1.620000px;}
.ws128{word-spacing:1.674000px;}
.ws81{word-spacing:1.680000px;}
.ws11c{word-spacing:1.728000px;}
.ws72{word-spacing:1.740000px;}
.ws1f{word-spacing:1.800000px;}
.wsb9{word-spacing:1.860000px;}
.ws2d{word-spacing:1.920000px;}
.ws14d{word-spacing:1.944000px;}
.wsd{word-spacing:1.980000px;}
.wsee{word-spacing:2.040000px;}
.ws109{word-spacing:2.052000px;}
.wsed{word-spacing:2.100000px;}
.ws21{word-spacing:2.160000px;}
.wsda{word-spacing:2.220000px;}
.wse1{word-spacing:2.280000px;}
.ws8e{word-spacing:2.322000px;}
.ws79{word-spacing:2.400000px;}
.ws7e{word-spacing:2.460000px;}
.ws88{word-spacing:2.484000px;}
.ws1e{word-spacing:2.520000px;}
.wsc1{word-spacing:2.580000px;}
.wsc0{word-spacing:2.640000px;}
.ws118{word-spacing:2.646000px;}
.wsce{word-spacing:2.700000px;}
.ws24{word-spacing:2.760000px;}
.ws14a{word-spacing:2.808000px;}
.ws9c{word-spacing:2.820000px;}
.ws102{word-spacing:2.862000px;}
.wsf1{word-spacing:2.880000px;}
.ws136{word-spacing:2.916000px;}
.ws32{word-spacing:2.940000px;}
.ws5b{word-spacing:3.000000px;}
.wse0{word-spacing:3.060000px;}
.ws7c{word-spacing:3.120000px;}
.wsf5{word-spacing:3.132000px;}
.ws9b{word-spacing:3.180000px;}
.wsf4{word-spacing:3.186000px;}
.wsc{word-spacing:3.234000px;}
.wse5{word-spacing:3.240000px;}
.ws117{word-spacing:3.294000px;}
.ws82{word-spacing:3.300000px;}
.wsd3{word-spacing:3.360000px;}
.ws95{word-spacing:3.420000px;}
.ws83{word-spacing:3.480000px;}
.ws17{word-spacing:3.510000px;}
.wsc8{word-spacing:3.600000px;}
.ws10{word-spacing:3.618000px;}
.ws80{word-spacing:3.660000px;}
.ws11{word-spacing:3.672000px;}
.ws41{word-spacing:3.720000px;}
.wsd7{word-spacing:3.780000px;}
.wsab{word-spacing:3.840000px;}
.ws8f{word-spacing:3.900000px;}
.wsc3{word-spacing:3.960000px;}
.ws39{word-spacing:4.020000px;}
.ws10e{word-spacing:4.050000px;}
.ws6e{word-spacing:4.080000px;}
.ws18{word-spacing:4.212000px;}
.ws85{word-spacing:4.260000px;}
.ws86{word-spacing:4.266000px;}
.wsa8{word-spacing:4.320000px;}
.wsa9{word-spacing:4.374000px;}
.wsad{word-spacing:4.380000px;}
.wsa7{word-spacing:4.428000px;}
.ws13b{word-spacing:4.536000px;}
.ws6a{word-spacing:4.560000px;}
.ws38{word-spacing:4.620000px;}
.ws134{word-spacing:4.644000px;}
.wscf{word-spacing:4.680000px;}
.ws69{word-spacing:4.698000px;}
.wsd9{word-spacing:4.740000px;}
.wse6{word-spacing:4.800000px;}
.wsf2{word-spacing:4.860000px;}
.wsbb{word-spacing:4.920000px;}
.wsc5{word-spacing:4.980000px;}
.wsef{word-spacing:5.040000px;}
.ws34{word-spacing:5.100000px;}
.ws14f{word-spacing:5.130000px;}
.ws7a{word-spacing:5.160000px;}
.ws6c{word-spacing:5.220000px;}
.wsb4{word-spacing:5.280000px;}
.ws9e{word-spacing:5.340000px;}
.ws37{word-spacing:5.400000px;}
.ws36{word-spacing:5.460000px;}
.wsfc{word-spacing:5.520000px;}
.ws3b{word-spacing:5.580000px;}
.ws12e{word-spacing:5.616000px;}
.ws3a{word-spacing:5.640000px;}
.ws12f{word-spacing:5.670000px;}
.wsd0{word-spacing:5.700000px;}
.ws13e{word-spacing:5.724000px;}
.wse3{word-spacing:5.820000px;}
.wse2{word-spacing:5.880000px;}
.ws101{word-spacing:5.886000px;}
.wscc{word-spacing:5.940000px;}
.ws144{word-spacing:5.994000px;}
.ws15{word-spacing:6.048000px;}
.ws10d{word-spacing:6.102000px;}
.ws77{word-spacing:6.120000px;}
.ws16{word-spacing:6.156000px;}
.wsec{word-spacing:6.180000px;}
.ws14b{word-spacing:6.264000px;}
.ws93{word-spacing:6.420000px;}
.ws3d{word-spacing:6.480000px;}
.ws120{word-spacing:6.534000px;}
.ws11f{word-spacing:6.588000px;}
.ws76{word-spacing:6.660000px;}
.ws10f{word-spacing:6.750000px;}
.wsdf{word-spacing:6.780000px;}
.wsb6{word-spacing:6.804000px;}
.wsde{word-spacing:6.840000px;}
.wsba{word-spacing:6.900000px;}
.wsb5{word-spacing:6.912000px;}
.wsd6{word-spacing:6.960000px;}
.wsd5{word-spacing:7.020000px;}
.ws5a{word-spacing:7.080000px;}
.ws108{word-spacing:7.290000px;}
.ws75{word-spacing:7.380000px;}
.wsb2{word-spacing:7.560000px;}
.wsb3{word-spacing:7.614000px;}
.wse9{word-spacing:7.620000px;}
.wsb1{word-spacing:7.668000px;}
.wse8{word-spacing:7.740000px;}
.wsfb{word-spacing:7.860000px;}
.wsfa{word-spacing:7.920000px;}
.ws49{word-spacing:8.100000px;}
.ws9d{word-spacing:8.160000px;}
.ws104{word-spacing:8.262000px;}
.wsea{word-spacing:8.280000px;}
.ws7d{word-spacing:8.400000px;}
.ws12b{word-spacing:8.424000px;}
.wsf0{word-spacing:8.460000px;}
.ws2c{word-spacing:8.580000px;}
.ws47{word-spacing:8.760000px;}
.ws122{word-spacing:8.856000px;}
.ws115{word-spacing:8.910000px;}
.wsc6{word-spacing:8.940000px;}
.ws92{word-spacing:9.000000px;}
.wsc7{word-spacing:9.060000px;}
.ws91{word-spacing:9.420000px;}
.ws90{word-spacing:9.480000px;}
.ws145{word-spacing:9.558000px;}
.wsaa{word-spacing:9.780000px;}
.ws5c{word-spacing:10.020000px;}
.ws150{word-spacing:10.314000px;}
.ws14e{word-spacing:10.422000px;}
.ws6b{word-spacing:10.440000px;}
.ws123{word-spacing:10.908000px;}
.ws124{word-spacing:11.016000px;}
.wsf9{word-spacing:11.280000px;}
.wsf8{word-spacing:11.340000px;}
.ws98{word-spacing:11.520000px;}
.ws97{word-spacing:11.640000px;}
.ws146{word-spacing:12.582000px;}
.ws11e{word-spacing:12.798000px;}
.ws74{word-spacing:14.100000px;}
.ws130{word-spacing:14.148000px;}
.wse7{word-spacing:14.280000px;}
.ws147{word-spacing:16.038000px;}
.ws153{word-spacing:18.576000px;}
.ws148{word-spacing:23.004000px;}
.ws152{word-spacing:23.112000px;}
.ws131{word-spacing:31.644000px;}
.ws4e{word-spacing:55.872000px;}
.ws50{word-spacing:78.720000px;}
.ws51{word-spacing:95.246400px;}
.ws62{word-spacing:112.896000px;}
.ws61{word-spacing:119.184000px;}
.ws55{word-spacing:139.502400px;}
.ws65{word-spacing:139.584000px;}
.ws8a{word-spacing:195.600000px;}
.ws64{word-spacing:201.552000px;}
.ws63{word-spacing:203.472000px;}
.ws8b{word-spacing:272.832000px;}
.ws54{word-spacing:291.936000px;}
._9{margin-left:-10.852200px;}
._2b{margin-left:-9.071400px;}
._4d{margin-left:-7.284600px;}
._8{margin-left:-5.517600px;}
._3{margin-left:-4.437000px;}
._4{margin-left:-2.878200px;}
._0{margin-left:-1.723800px;}
._1{width:1.540200px;}
._2{width:2.754000px;}
._7{width:4.039800px;}
._a{width:5.066400px;}
._6{width:6.156000px;}
._b{width:7.290000px;}
._c{width:8.440200px;}
._2a{width:9.456000px;}
._4c{width:10.464000px;}
._4f{width:11.562600px;}
._50{width:14.461200px;}
._51{width:22.550400px;}
._5{width:36.369600px;}
._4e{width:43.523400px;}
._31{width:47.424000px;}
._28{width:53.136000px;}
._30{width:57.168000px;}
._2d{width:68.976000px;}
._2e{width:70.704000px;}
._2f{width:72.672000px;}
._10{width:95.520000px;}
._13{width:99.600000px;}
._29{width:103.440000px;}
._11{width:127.968000px;}
._1c{width:133.531800px;}
._1f{width:138.960000px;}
._38{width:145.488000px;}
._1d{width:147.840000px;}
._14{width:150.672000px;}
._37{width:155.184000px;}
._27{width:157.344000px;}
._20{width:164.352000px;}
._21{width:170.640000px;}
._23{width:177.840000px;}
._24{width:184.128000px;}
._22{width:188.064000px;}
._26{width:191.952000px;}
._40{width:200.640000px;}
._d{width:209.856000px;}
._18{width:214.541400px;}
._1b{width:215.904000px;}
._f{width:222.576000px;}
._3e{width:225.744000px;}
._44{width:230.784000px;}
._12{width:233.419800px;}
._32{width:237.984000px;}
._e{width:243.936000px;}
._39{width:251.472000px;}
._15{width:264.720000px;}
._19{width:267.739800px;}
._1e{width:273.072000px;}
._17{width:287.040000px;}
._25{width:295.248000px;}
._49{width:299.952000px;}
._43{width:303.792000px;}
._4b{width:307.584000px;}
._35{width:309.888000px;}
._36{width:313.680000px;}
._34{width:325.440000px;}
._2c{width:328.960800px;}
._4a{width:332.832000px;}
._33{width:336.960000px;}
._3b{width:338.928000px;}
._3d{width:342.912000px;}
._42{width:347.184000px;}
._3a{width:350.496000px;}
._3c{width:352.656000px;}
._41{width:358.944000px;}
._3f{width:363.456000px;}
._48{width:396.720000px;}
._1a{width:399.120000px;}
._47{width:408.624000px;}
._16{width:411.408000px;}
._45{width:422.640000px;}
._46{width:424.128000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.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;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y14f{bottom:112.790850px;}
.y121{bottom:112.976850px;}
.yfa{bottom:113.066850px;}
.y83{bottom:113.078700px;}
.y6b{bottom:113.078850px;}
.y10{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.yc9{bottom:120.487200px;}
.yf{bottom:131.601450px;}
.y14e{bottom:133.796850px;}
.y120{bottom:133.982850px;}
.y152{bottom:134.060850px;}
.yf9{bottom:134.072850px;}
.y82{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yc8{bottom:140.291700px;}
.ye8{bottom:143.882100px;}
.ye{bottom:145.997850px;}
.y14d{bottom:154.802850px;}
.y11f{bottom:154.988850px;}
.y151{bottom:155.066850px;}
.y81{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.yc7{bottom:160.096200px;}
.yd{bottom:160.397850px;}
.ye7{bottom:163.686600px;}
.y14c{bottom:175.808850px;}
.y11e{bottom:175.994850px;}
.y150{bottom:176.072850px;}
.y80{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.yc6{bottom:179.900700px;}
.y28{bottom:180.212700px;}
.yf8{bottom:181.529400px;}
.yc5{bottom:190.441050px;}
.y14b{bottom:196.814850px;}
.y11d{bottom:197.000850px;}
.y7f{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y27{bottom:201.212700px;}
.y37{bottom:203.447400px;}
.y14a{bottom:217.820850px;}
.y11c{bottom:218.006850px;}
.y7e{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y36{bottom:221.442900px;}
.y26{bottom:222.212700px;}
.y149{bottom:238.826850px;}
.y11b{bottom:239.012850px;}
.y7d{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.y35{bottom:239.438400px;}
.y25{bottom:243.212700px;}
.yf7{bottom:244.529400px;}
.yf0{bottom:253.441050px;}
.y34{bottom:257.433900px;}
.y148{bottom:259.832850px;}
.y11a{bottom:260.018850px;}
.y7c{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y33{bottom:275.429400px;}
.y147{bottom:280.838850px;}
.y119{bottom:281.024850px;}
.y7b{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y32{bottom:293.424900px;}
.y146{bottom:301.844850px;}
.y118{bottom:302.030850px;}
.y7a{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.yf6{bottom:307.529400px;}
.y31{bottom:311.420400px;}
.y145{bottom:322.850850px;}
.y117{bottom:323.036850px;}
.y79{bottom:323.078700px;}
.yc4{bottom:323.078850px;}
.yea{bottom:323.247000px;}
.y21{bottom:327.212700px;}
.y30{bottom:329.415900px;}
.ye2{bottom:330.383100px;}
.y61{bottom:337.441050px;}
.ye9{bottom:343.051500px;}
.y144{bottom:343.856850px;}
.y116{bottom:344.042850px;}
.y78{bottom:344.078700px;}
.yc3{bottom:344.078850px;}
.y20{bottom:348.212700px;}
.ye1{bottom:349.583100px;}
.y2f{bottom:364.421400px;}
.y143{bottom:364.862850px;}
.y115{bottom:365.048850px;}
.y77{bottom:365.078700px;}
.yc2{bottom:365.078850px;}
.ye0{bottom:368.783100px;}
.yf5{bottom:370.937100px;}
.y2e{bottom:382.421400px;}
.y1f{bottom:382.448400px;}
.y142{bottom:385.868850px;}
.y114{bottom:386.054850px;}
.y76{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.ydf{bottom:387.983100px;}
.yde{bottom:392.183100px;}
.yf2{bottom:398.328450px;}
.y2d{bottom:400.421400px;}
.yf4{bottom:400.441050px;}
.y141{bottom:406.874850px;}
.y113{bottom:407.060850px;}
.y75{bottom:407.078700px;}
.y5f{bottom:407.078850px;}
.ydd{bottom:407.183100px;}
.yed{bottom:410.969400px;}
.yf1{bottom:418.132950px;}
.y2c{bottom:418.421400px;}
.ydc{bottom:426.383100px;}
.y140{bottom:427.880850px;}
.y112{bottom:428.066850px;}
.y74{bottom:428.078700px;}
.y5e{bottom:428.078850px;}
.ydb{bottom:430.583100px;}
.yec{bottom:430.773900px;}
.yda{bottom:445.583100px;}
.y13f{bottom:448.886850px;}
.y111{bottom:449.072850px;}
.y73{bottom:449.078700px;}
.y5d{bottom:449.078850px;}
.yeb{bottom:450.578400px;}
.yef{bottom:452.989800px;}
.yd9{bottom:464.783100px;}
.y1e{bottom:467.223450px;}
.yd8{bottom:468.983100px;}
.y13e{bottom:469.892850px;}
.y72{bottom:470.078700px;}
.y5c{bottom:470.078850px;}
.yee{bottom:472.794300px;}
.yd7{bottom:483.983100px;}
.y1d{bottom:487.027950px;}
.y13d{bottom:490.898850px;}
.y71{bottom:491.078700px;}
.y5b{bottom:491.078850px;}
.yd3{bottom:503.483100px;}
.y110{bottom:505.441050px;}
.yd6{bottom:510.983100px;}
.y13c{bottom:511.904850px;}
.y70{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.yc1{bottom:512.370600px;}
.yd2{bottom:518.483100px;}
.yd5{bottom:525.983100px;}
.yc0{bottom:527.370600px;}
.ycf{bottom:527.867100px;}
.y1c{bottom:528.047400px;}
.y13b{bottom:532.910850px;}
.y6f{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.yd1{bottom:533.483100px;}
.yd4{bottom:540.983100px;}
.ycc{bottom:542.867100px;}
.ybf{bottom:547.422600px;}
.y1b{bottom:547.851900px;}
.yd0{bottom:548.483100px;}
.y13a{bottom:553.916850px;}
.y6e{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.ybe{bottom:562.422600px;}
.yce{bottom:567.251100px;}
.y1a{bottom:567.656400px;}
.y139{bottom:574.922850px;}
.y6d{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y10f{bottom:580.529400px;}
.ycd{bottom:582.251100px;}
.ybd{bottom:582.474600px;}
.y19{bottom:587.460900px;}
.y138{bottom:595.928850px;}
.y6c{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.ybc{bottom:597.474600px;}
.y18{bottom:607.265400px;}
.yf3{bottom:610.441050px;}
.ycb{bottom:612.734250px;}
.y137{bottom:616.934850px;}
.y10e{bottom:617.072850px;}
.y55{bottom:617.078850px;}
.ybb{bottom:617.526600px;}
.y17{bottom:627.069900px;}
.yba{bottom:632.526600px;}
.yca{bottom:632.538750px;}
.ya0{bottom:633.862950px;}
.y136{bottom:637.940850px;}
.y10d{bottom:638.072850px;}
.y54{bottom:638.078850px;}
.y16{bottom:646.874400px;}
.y9f{bottom:648.862950px;}
.yb9{bottom:652.578600px;}
.y135{bottom:658.946850px;}
.y10c{bottom:659.072850px;}
.y53{bottom:659.078850px;}
.y9e{bottom:663.862950px;}
.y15{bottom:666.678900px;}
.yb8{bottom:667.578600px;}
.y9d{bottom:678.862950px;}
.y134{bottom:679.952850px;}
.y10b{bottom:680.072850px;}
.y52{bottom:680.078850px;}
.yb7{bottom:682.578600px;}
.y14{bottom:686.483400px;}
.y9c{bottom:698.062950px;}
.ye6{bottom:700.675050px;}
.y133{bottom:700.958850px;}
.y10a{bottom:701.072850px;}
.y51{bottom:701.078850px;}
.yb6{bottom:702.630600px;}
.y13{bottom:706.287900px;}
.y9b{bottom:713.062950px;}
.yb5{bottom:717.630600px;}
.ye5{bottom:720.479550px;}
.y132{bottom:721.964850px;}
.y50{bottom:722.078850px;}
.y9a{bottom:728.062950px;}
.yb4{bottom:732.630600px;}
.y12{bottom:737.385300px;}
.ye4{bottom:740.284050px;}
.y131{bottom:742.970850px;}
.y99{bottom:743.062950px;}
.y4f{bottom:743.078850px;}
.y109{bottom:748.529400px;}
.yb3{bottom:752.682600px;}
.y98{bottom:758.062950px;}
.ye3{bottom:760.088550px;}
.y130{bottom:763.976850px;}
.y4e{bottom:764.078850px;}
.yb2{bottom:772.734600px;}
.y97{bottom:777.262950px;}
.y12f{bottom:784.982850px;}
.y108{bottom:785.012850px;}
.y4d{bottom:785.078850px;}
.yb1{bottom:787.734600px;}
.y96{bottom:792.262950px;}
.y12e{bottom:805.988850px;}
.y107{bottom:806.018850px;}
.y4c{bottom:806.078850px;}
.y95{bottom:807.262950px;}
.yb0{bottom:807.786600px;}
.yc{bottom:816.666900px;}
.y94{bottom:822.262950px;}
.yaf{bottom:822.786600px;}
.y12d{bottom:826.994850px;}
.y106{bottom:827.024850px;}
.y4b{bottom:827.078850px;}
.yb{bottom:834.666900px;}
.y93{bottom:841.462950px;}
.yae{bottom:842.838600px;}
.y12c{bottom:848.000850px;}
.y105{bottom:848.030850px;}
.y4a{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.y92{bottom:856.462950px;}
.yad{bottom:857.838600px;}
.y12b{bottom:869.006850px;}
.y104{bottom:869.036850px;}
.y49{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y91{bottom:871.462950px;}
.yac{bottom:877.890600px;}
.y90{bottom:886.462950px;}
.y8{bottom:888.666900px;}
.y12a{bottom:890.012850px;}
.y103{bottom:890.042850px;}
.y48{bottom:890.078850px;}
.yab{bottom:892.890600px;}
.y8f{bottom:901.462950px;}
.y7{bottom:906.666900px;}
.yaa{bottom:907.890600px;}
.y129{bottom:911.018850px;}
.y102{bottom:911.048850px;}
.y47{bottom:911.078850px;}
.y8e{bottom:920.662950px;}
.y6{bottom:924.666900px;}
.ya9{bottom:927.942600px;}
.y128{bottom:932.024850px;}
.y101{bottom:932.054850px;}
.y46{bottom:932.078850px;}
.y8d{bottom:939.862950px;}
.ya8{bottom:942.942600px;}
.y127{bottom:953.030850px;}
.y100{bottom:953.060850px;}
.y45{bottom:953.078850px;}
.y8c{bottom:954.862950px;}
.ya7{bottom:957.942600px;}
.y5{bottom:959.674800px;}
.y126{bottom:974.036850px;}
.y8b{bottom:974.062950px;}
.yff{bottom:974.066850px;}
.y44{bottom:974.078850px;}
.ya6{bottom:977.994600px;}
.y4{bottom:979.474800px;}
.ya5{bottom:992.994600px;}
.y8a{bottom:993.262950px;}
.y125{bottom:995.042850px;}
.yfe{bottom:995.072850px;}
.y43{bottom:995.078850px;}
.y89{bottom:1008.262950px;}
.ya4{bottom:1013.046600px;}
.y124{bottom:1016.048850px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y88{bottom:1027.462950px;}
.ya3{bottom:1028.046600px;}
.y123{bottom:1037.054850px;}
.y41{bottom:1037.078850px;}
.yfd{bottom:1042.529250px;}
.y87{bottom:1046.662950px;}
.ya2{bottom:1048.098600px;}
.y2{bottom:1049.282550px;}
.y122{bottom:1058.060850px;}
.y40{bottom:1058.078850px;}
.y86{bottom:1067.218950px;}
.ya1{bottom:1068.150600px;}
.yfc{bottom:1079.066850px;}
.y3f{bottom:1079.078850px;}
.y85{bottom:1099.478400px;}
.yfb{bottom:1100.072850px;}
.y3e{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.y84{bottom:1119.282900px;}
.y3d{bottom:1121.078850px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h8{height:34.446094px;}
.h7{height:34.657031px;}
.h16{height:36.540019px;}
.h6{height:36.542039px;}
.h18{height:36.563437px;}
.h13{height:38.226562px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h9{height:43.004883px;}
.h11{height:43.057617px;}
.h15{height:43.312500px;}
.h10{height:43.321289px;}
.h14{height:44.039062px;}
.ha{height:47.343750px;}
.hb{height:48.726562px;}
.h17{height:48.744562px;}
.h1b{height:48.750562px;}
.hc{height:49.543945px;}
.h1c{height:49.782562px;}
.h19{height:50.176758px;}
.h1a{height:52.078125px;}
.he{height:54.140625px;}
.hf{height:55.048828px;}
.hd{height:56.812500px;}
.h4{height:59.554688px;}
.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;}
.x3{left:90.987600px;}
.xc{left:107.063850px;}
.xd{left:108.289650px;}
.xf{left:112.239150px;}
.x1e{left:116.104950px;}
.x7{left:119.878950px;}
.x8{left:122.032500px;}
.x9{left:124.102950px;}
.xe{left:139.347150px;}
.x40{left:163.345200px;}
.x30{left:167.281200px;}
.x41{left:172.213200px;}
.x2f{left:185.980950px;}
.x24{left:189.772950px;}
.x25{left:195.124950px;}
.x26{left:197.944950px;}
.x2b{left:200.548950px;}
.x2e{left:203.140950px;}
.x2d{left:206.440950px;}
.x16{left:207.927150px;}
.x17{left:209.235150px;}
.x1d{left:210.783150px;}
.x11{left:212.523150px;}
.x19{left:214.227150px;}
.x10{left:215.715150px;}
.x18{left:219.519150px;}
.x1f{left:220.948950px;}
.x1a{left:222.507150px;}
.x1c{left:232.443150px;}
.x27{left:237.868950px;}
.x29{left:239.692950px;}
.x36{left:277.345200px;}
.x31{left:279.313200px;}
.x35{left:290.797200px;}
.x5{left:300.189000px;}
.x13{left:302.835150px;}
.x12{left:304.155150px;}
.x37{left:308.161200px;}
.x6{left:317.199000px;}
.x21{left:354.052950px;}
.x20{left:355.372950px;}
.x2a{left:358.672950px;}
.x39{left:389.689200px;}
.x4{left:396.050700px;}
.x3b{left:398.449200px;}
.x3a{left:400.525200px;}
.x38{left:403.141200px;}
.x14{left:404.583150px;}
.x22{left:453.364950px;}
.x3c{left:504.589200px;}
.x32{left:506.905200px;}
.x3d{left:511.237200px;}
.x33{left:552.229200px;}
.x3e{left:627.817200px;}
.x3f{left:637.465200px;}
.xb{left:645.890400px;}
.xa{left:666.938400px;}
.x23{left:704.644950px;}
.x2c{left:712.084950px;}
.x28{left:713.320950px;}
.x1b{left:721.875150px;}
.x34{left:727.297200px;}
.x15{left:730.575150px;}
.x1{left:801.157500px;}
@media print{
.v5{vertical-align:-33.365333pt;}
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.938667pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls15{letter-spacing:-7.392000pt;}
.ls20{letter-spacing:-6.432000pt;}
.ls14{letter-spacing:-3.840000pt;}
.ls19{letter-spacing:-2.880000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.912000pt;}
.ls23{letter-spacing:-0.816000pt;}
.ls27{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls26{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls22{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.435307pt;}
.ls24{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls29{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.248747pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.093280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls1e{letter-spacing:2.784000pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls16{letter-spacing:3.888000pt;}
.ls1a{letter-spacing:6.120000pt;}
.ls18{letter-spacing:6.768000pt;}
.ls17{letter-spacing:8.640000pt;}
.ls1{letter-spacing:37.640501pt;}
.ls0{letter-spacing:37.641035pt;}
.lsa{letter-spacing:217.301333pt;}
.ws5{word-spacing:-15.936000pt;}
.wsf7{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws67{word-spacing:-13.226667pt;}
.wsb0{word-spacing:-13.173333pt;}
.ws27{word-spacing:-13.066667pt;}
.ws6f{word-spacing:-12.906667pt;}
.wsd1{word-spacing:-12.746667pt;}
.ws6{word-spacing:-12.533333pt;}
.ws4c{word-spacing:-12.426667pt;}
.wsa3{word-spacing:-11.952000pt;}
.ws60{word-spacing:-11.904000pt;}
.wsae{word-spacing:-11.760000pt;}
.ws138{word-spacing:-11.712000pt;}
.ws125{word-spacing:-11.616000pt;}
.ws8c{word-spacing:-11.520000pt;}
.ws10c{word-spacing:-11.472000pt;}
.ws139{word-spacing:-11.328000pt;}
.ws126{word-spacing:-11.136000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws89{word-spacing:-10.624000pt;}
.ws53{word-spacing:-10.581333pt;}
.ws4f{word-spacing:-10.538667pt;}
.ws52{word-spacing:-10.453333pt;}
.ws1{word-spacing:-10.308267pt;}
.ws9{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws26{word-spacing:-9.600000pt;}
.wsaf{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.wsa1{word-spacing:-8.112000pt;}
.ws141{word-spacing:-7.824000pt;}
.ws70{word-spacing:-7.711147pt;}
.ws71{word-spacing:-7.617867pt;}
.ws13a{word-spacing:-7.536000pt;}
.ws66{word-spacing:-7.462400pt;}
.ws68{word-spacing:-7.275840pt;}
.ws4d{word-spacing:-6.940032pt;}
.wsf3{word-spacing:-5.520000pt;}
.wsa2{word-spacing:-4.560000pt;}
.ws57{word-spacing:-3.840000pt;}
.ws151{word-spacing:-2.832000pt;}
.ws5d{word-spacing:-2.826667pt;}
.ws12d{word-spacing:-2.688000pt;}
.ws13f{word-spacing:-2.640000pt;}
.ws1c{word-spacing:-2.560000pt;}
.wscd{word-spacing:-2.506667pt;}
.ws44{word-spacing:-2.453333pt;}
.wsbe{word-spacing:-2.448000pt;}
.ws45{word-spacing:-2.400000pt;}
.wsd8{word-spacing:-2.346667pt;}
.wsa4{word-spacing:-2.304000pt;}
.ws25{word-spacing:-2.293333pt;}
.wsa5{word-spacing:-2.256000pt;}
.wsbd{word-spacing:-2.240000pt;}
.ws19{word-spacing:-2.208000pt;}
.ws84{word-spacing:-2.186667pt;}
.ws127{word-spacing:-2.160000pt;}
.ws30{word-spacing:-2.133333pt;}
.wsb8{word-spacing:-2.080000pt;}
.ws1a{word-spacing:-2.064000pt;}
.ws4b{word-spacing:-2.026667pt;}
.wsf6{word-spacing:-2.016000pt;}
.ws35{word-spacing:-1.973333pt;}
.ws103{word-spacing:-1.968000pt;}
.wseb{word-spacing:-1.920000pt;}
.ws78{word-spacing:-1.866667pt;}
.ws114{word-spacing:-1.824000pt;}
.wsc2{word-spacing:-1.813333pt;}
.wsca{word-spacing:-1.760000pt;}
.ws121{word-spacing:-1.728000pt;}
.wsa0{word-spacing:-1.706667pt;}
.ws10a{word-spacing:-1.680000pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws149{word-spacing:-1.632000pt;}
.wsb7{word-spacing:-1.600000pt;}
.ws129{word-spacing:-1.584000pt;}
.ws12a{word-spacing:-1.536000pt;}
.ws96{word-spacing:-1.493333pt;}
.ws11b{word-spacing:-1.488000pt;}
.wsdc{word-spacing:-1.440000pt;}
.ws48{word-spacing:-1.386667pt;}
.wsdd{word-spacing:-1.280000pt;}
.ws106{word-spacing:-1.248000pt;}
.wsdb{word-spacing:-1.226667pt;}
.ws14c{word-spacing:-1.200000pt;}
.ws99{word-spacing:-1.173333pt;}
.ws119{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.104000pt;}
.ws22{word-spacing:-1.066667pt;}
.ws110{word-spacing:-1.056000pt;}
.wsbf{word-spacing:-1.013333pt;}
.ws111{word-spacing:-1.008000pt;}
.ws105{word-spacing:-0.912000pt;}
.ws43{word-spacing:-0.906667pt;}
.ws56{word-spacing:-0.853333pt;}
.ws5e{word-spacing:-0.816000pt;}
.ws5f{word-spacing:-0.810667pt;}
.ws7f{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws12{word-spacing:-0.672000pt;}
.wsbc{word-spacing:-0.640000pt;}
.wsd2{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.576000pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws135{word-spacing:-0.528000pt;}
.wsa6{word-spacing:-0.480000pt;}
.ws11d{word-spacing:-0.432000pt;}
.wsd4{word-spacing:-0.426667pt;}
.ws7b{word-spacing:-0.373333pt;}
.wsb{word-spacing:-0.362667pt;}
.ws94{word-spacing:-0.266667pt;}
.wse4{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.160000pt;}
.ws29{word-spacing:-0.106667pt;}
.ws9a{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws133{word-spacing:0.096000pt;}
.ws2e{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.160000pt;}
.wsff{word-spacing:0.192000pt;}
.wsfe{word-spacing:0.213333pt;}
.ws87{word-spacing:0.240000pt;}
.ws20{word-spacing:0.266667pt;}
.ws12c{word-spacing:0.288000pt;}
.wsc9{word-spacing:0.320000pt;}
.ws142{word-spacing:0.336000pt;}
.ws9f{word-spacing:0.373333pt;}
.ws40{word-spacing:0.426667pt;}
.ws137{word-spacing:0.432000pt;}
.ws46{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.533333pt;}
.ws140{word-spacing:0.576000pt;}
.wsf{word-spacing:0.614400pt;}
.ws13c{word-spacing:0.624000pt;}
.ws59{word-spacing:0.640000pt;}
.wsac{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws132{word-spacing:0.768000pt;}
.ws73{word-spacing:0.800000pt;}
.ws107{word-spacing:0.816000pt;}
.ws23{word-spacing:0.853333pt;}
.ws58{word-spacing:0.906667pt;}
.ws143{word-spacing:0.912000pt;}
.ws42{word-spacing:0.960000pt;}
.ws8d{word-spacing:1.008000pt;}
.ws116{word-spacing:1.056000pt;}
.ws6d{word-spacing:1.066667pt;}
.ws13d{word-spacing:1.104000pt;}
.ws10b{word-spacing:1.152000pt;}
.wsfd{word-spacing:1.173333pt;}
.ws100{word-spacing:1.200000pt;}
.ws31{word-spacing:1.226667pt;}
.ws112{word-spacing:1.248000pt;}
.ws2f{word-spacing:1.280000pt;}
.ws113{word-spacing:1.296000pt;}
.ws4a{word-spacing:1.333333pt;}
.ws11a{word-spacing:1.344000pt;}
.wsc4{word-spacing:1.386667pt;}
.wscb{word-spacing:1.440000pt;}
.ws128{word-spacing:1.488000pt;}
.ws81{word-spacing:1.493333pt;}
.ws11c{word-spacing:1.536000pt;}
.ws72{word-spacing:1.546667pt;}
.ws1f{word-spacing:1.600000pt;}
.wsb9{word-spacing:1.653333pt;}
.ws2d{word-spacing:1.706667pt;}
.ws14d{word-spacing:1.728000pt;}
.wsd{word-spacing:1.760000pt;}
.wsee{word-spacing:1.813333pt;}
.ws109{word-spacing:1.824000pt;}
.wsed{word-spacing:1.866667pt;}
.ws21{word-spacing:1.920000pt;}
.wsda{word-spacing:1.973333pt;}
.wse1{word-spacing:2.026667pt;}
.ws8e{word-spacing:2.064000pt;}
.ws79{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.186667pt;}
.ws88{word-spacing:2.208000pt;}
.ws1e{word-spacing:2.240000pt;}
.wsc1{word-spacing:2.293333pt;}
.wsc0{word-spacing:2.346667pt;}
.ws118{word-spacing:2.352000pt;}
.wsce{word-spacing:2.400000pt;}
.ws24{word-spacing:2.453333pt;}
.ws14a{word-spacing:2.496000pt;}
.ws9c{word-spacing:2.506667pt;}
.ws102{word-spacing:2.544000pt;}
.wsf1{word-spacing:2.560000pt;}
.ws136{word-spacing:2.592000pt;}
.ws32{word-spacing:2.613333pt;}
.ws5b{word-spacing:2.666667pt;}
.wse0{word-spacing:2.720000pt;}
.ws7c{word-spacing:2.773333pt;}
.wsf5{word-spacing:2.784000pt;}
.ws9b{word-spacing:2.826667pt;}
.wsf4{word-spacing:2.832000pt;}
.wsc{word-spacing:2.874667pt;}
.wse5{word-spacing:2.880000pt;}
.ws117{word-spacing:2.928000pt;}
.ws82{word-spacing:2.933333pt;}
.wsd3{word-spacing:2.986667pt;}
.ws95{word-spacing:3.040000pt;}
.ws83{word-spacing:3.093333pt;}
.ws17{word-spacing:3.120000pt;}
.wsc8{word-spacing:3.200000pt;}
.ws10{word-spacing:3.216000pt;}
.ws80{word-spacing:3.253333pt;}
.ws11{word-spacing:3.264000pt;}
.ws41{word-spacing:3.306667pt;}
.wsd7{word-spacing:3.360000pt;}
.wsab{word-spacing:3.413333pt;}
.ws8f{word-spacing:3.466667pt;}
.wsc3{word-spacing:3.520000pt;}
.ws39{word-spacing:3.573333pt;}
.ws10e{word-spacing:3.600000pt;}
.ws6e{word-spacing:3.626667pt;}
.ws18{word-spacing:3.744000pt;}
.ws85{word-spacing:3.786667pt;}
.ws86{word-spacing:3.792000pt;}
.wsa8{word-spacing:3.840000pt;}
.wsa9{word-spacing:3.888000pt;}
.wsad{word-spacing:3.893333pt;}
.wsa7{word-spacing:3.936000pt;}
.ws13b{word-spacing:4.032000pt;}
.ws6a{word-spacing:4.053333pt;}
.ws38{word-spacing:4.106667pt;}
.ws134{word-spacing:4.128000pt;}
.wscf{word-spacing:4.160000pt;}
.ws69{word-spacing:4.176000pt;}
.wsd9{word-spacing:4.213333pt;}
.wse6{word-spacing:4.266667pt;}
.wsf2{word-spacing:4.320000pt;}
.wsbb{word-spacing:4.373333pt;}
.wsc5{word-spacing:4.426667pt;}
.wsef{word-spacing:4.480000pt;}
.ws34{word-spacing:4.533333pt;}
.ws14f{word-spacing:4.560000pt;}
.ws7a{word-spacing:4.586667pt;}
.ws6c{word-spacing:4.640000pt;}
.wsb4{word-spacing:4.693333pt;}
.ws9e{word-spacing:4.746667pt;}
.ws37{word-spacing:4.800000pt;}
.ws36{word-spacing:4.853333pt;}
.wsfc{word-spacing:4.906667pt;}
.ws3b{word-spacing:4.960000pt;}
.ws12e{word-spacing:4.992000pt;}
.ws3a{word-spacing:5.013333pt;}
.ws12f{word-spacing:5.040000pt;}
.wsd0{word-spacing:5.066667pt;}
.ws13e{word-spacing:5.088000pt;}
.wse3{word-spacing:5.173333pt;}
.wse2{word-spacing:5.226667pt;}
.ws101{word-spacing:5.232000pt;}
.wscc{word-spacing:5.280000pt;}
.ws144{word-spacing:5.328000pt;}
.ws15{word-spacing:5.376000pt;}
.ws10d{word-spacing:5.424000pt;}
.ws77{word-spacing:5.440000pt;}
.ws16{word-spacing:5.472000pt;}
.wsec{word-spacing:5.493333pt;}
.ws14b{word-spacing:5.568000pt;}
.ws93{word-spacing:5.706667pt;}
.ws3d{word-spacing:5.760000pt;}
.ws120{word-spacing:5.808000pt;}
.ws11f{word-spacing:5.856000pt;}
.ws76{word-spacing:5.920000pt;}
.ws10f{word-spacing:6.000000pt;}
.wsdf{word-spacing:6.026667pt;}
.wsb6{word-spacing:6.048000pt;}
.wsde{word-spacing:6.080000pt;}
.wsba{word-spacing:6.133333pt;}
.wsb5{word-spacing:6.144000pt;}
.wsd6{word-spacing:6.186667pt;}
.wsd5{word-spacing:6.240000pt;}
.ws5a{word-spacing:6.293333pt;}
.ws108{word-spacing:6.480000pt;}
.ws75{word-spacing:6.560000pt;}
.wsb2{word-spacing:6.720000pt;}
.wsb3{word-spacing:6.768000pt;}
.wse9{word-spacing:6.773333pt;}
.wsb1{word-spacing:6.816000pt;}
.wse8{word-spacing:6.880000pt;}
.wsfb{word-spacing:6.986667pt;}
.wsfa{word-spacing:7.040000pt;}
.ws49{word-spacing:7.200000pt;}
.ws9d{word-spacing:7.253333pt;}
.ws104{word-spacing:7.344000pt;}
.wsea{word-spacing:7.360000pt;}
.ws7d{word-spacing:7.466667pt;}
.ws12b{word-spacing:7.488000pt;}
.wsf0{word-spacing:7.520000pt;}
.ws2c{word-spacing:7.626667pt;}
.ws47{word-spacing:7.786667pt;}
.ws122{word-spacing:7.872000pt;}
.ws115{word-spacing:7.920000pt;}
.wsc6{word-spacing:7.946667pt;}
.ws92{word-spacing:8.000000pt;}
.wsc7{word-spacing:8.053333pt;}
.ws91{word-spacing:8.373333pt;}
.ws90{word-spacing:8.426667pt;}
.ws145{word-spacing:8.496000pt;}
.wsaa{word-spacing:8.693333pt;}
.ws5c{word-spacing:8.906667pt;}
.ws150{word-spacing:9.168000pt;}
.ws14e{word-spacing:9.264000pt;}
.ws6b{word-spacing:9.280000pt;}
.ws123{word-spacing:9.696000pt;}
.ws124{word-spacing:9.792000pt;}
.wsf9{word-spacing:10.026667pt;}
.wsf8{word-spacing:10.080000pt;}
.ws98{word-spacing:10.240000pt;}
.ws97{word-spacing:10.346667pt;}
.ws146{word-spacing:11.184000pt;}
.ws11e{word-spacing:11.376000pt;}
.ws74{word-spacing:12.533333pt;}
.ws130{word-spacing:12.576000pt;}
.wse7{word-spacing:12.693333pt;}
.ws147{word-spacing:14.256000pt;}
.ws153{word-spacing:16.512000pt;}
.ws148{word-spacing:20.448000pt;}
.ws152{word-spacing:20.544000pt;}
.ws131{word-spacing:28.128000pt;}
.ws4e{word-spacing:49.664000pt;}
.ws50{word-spacing:69.973333pt;}
.ws51{word-spacing:84.663467pt;}
.ws62{word-spacing:100.352000pt;}
.ws61{word-spacing:105.941333pt;}
.ws55{word-spacing:124.002133pt;}
.ws65{word-spacing:124.074667pt;}
.ws8a{word-spacing:173.866667pt;}
.ws64{word-spacing:179.157333pt;}
.ws63{word-spacing:180.864000pt;}
.ws8b{word-spacing:242.517333pt;}
.ws54{word-spacing:259.498667pt;}
._9{margin-left:-9.646400pt;}
._2b{margin-left:-8.063467pt;}
._4d{margin-left:-6.475200pt;}
._8{margin-left:-4.904533pt;}
._3{margin-left:-3.944000pt;}
._4{margin-left:-2.558400pt;}
._0{margin-left:-1.532267pt;}
._1{width:1.369067pt;}
._2{width:2.448000pt;}
._7{width:3.590933pt;}
._a{width:4.503467pt;}
._6{width:5.472000pt;}
._b{width:6.480000pt;}
._c{width:7.502400pt;}
._2a{width:8.405333pt;}
._4c{width:9.301333pt;}
._4f{width:10.277867pt;}
._50{width:12.854400pt;}
._51{width:20.044800pt;}
._5{width:32.328533pt;}
._4e{width:38.687467pt;}
._31{width:42.154667pt;}
._28{width:47.232000pt;}
._30{width:50.816000pt;}
._2d{width:61.312000pt;}
._2e{width:62.848000pt;}
._2f{width:64.597333pt;}
._10{width:84.906667pt;}
._13{width:88.533333pt;}
._29{width:91.946667pt;}
._11{width:113.749333pt;}
._1c{width:118.694933pt;}
._1f{width:123.520000pt;}
._38{width:129.322667pt;}
._1d{width:131.413333pt;}
._14{width:133.930667pt;}
._37{width:137.941333pt;}
._27{width:139.861333pt;}
._20{width:146.090667pt;}
._21{width:151.680000pt;}
._23{width:158.080000pt;}
._24{width:163.669333pt;}
._22{width:167.168000pt;}
._26{width:170.624000pt;}
._40{width:178.346667pt;}
._d{width:186.538667pt;}
._18{width:190.703467pt;}
._1b{width:191.914667pt;}
._f{width:197.845333pt;}
._3e{width:200.661333pt;}
._44{width:205.141333pt;}
._12{width:207.484267pt;}
._32{width:211.541333pt;}
._e{width:216.832000pt;}
._39{width:223.530667pt;}
._15{width:235.306667pt;}
._19{width:237.990933pt;}
._1e{width:242.730667pt;}
._17{width:255.146667pt;}
._25{width:262.442667pt;}
._49{width:266.624000pt;}
._43{width:270.037333pt;}
._4b{width:273.408000pt;}
._35{width:275.456000pt;}
._36{width:278.826667pt;}
._34{width:289.280000pt;}
._2c{width:292.409600pt;}
._4a{width:295.850667pt;}
._33{width:299.520000pt;}
._3b{width:301.269333pt;}
._3d{width:304.810667pt;}
._42{width:308.608000pt;}
._3a{width:311.552000pt;}
._3c{width:313.472000pt;}
._41{width:319.061333pt;}
._3f{width:323.072000pt;}
._48{width:352.640000pt;}
._1a{width:354.773333pt;}
._47{width:363.221333pt;}
._16{width:365.696000pt;}
._45{width:375.680000pt;}
._46{width:377.002667pt;}
.fs9{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.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;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y14f{bottom:100.258533pt;}
.y121{bottom:100.423867pt;}
.yfa{bottom:100.503867pt;}
.y83{bottom:100.514400pt;}
.y6b{bottom:100.514533pt;}
.y10{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.yc9{bottom:107.099733pt;}
.yf{bottom:116.979067pt;}
.y14e{bottom:118.930533pt;}
.y120{bottom:119.095867pt;}
.y152{bottom:119.165200pt;}
.yf9{bottom:119.175867pt;}
.y82{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yc8{bottom:124.703733pt;}
.ye8{bottom:127.895200pt;}
.ye{bottom:129.775867pt;}
.y14d{bottom:137.602533pt;}
.y11f{bottom:137.767867pt;}
.y151{bottom:137.837200pt;}
.y81{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.yc7{bottom:142.307733pt;}
.yd{bottom:142.575867pt;}
.ye7{bottom:145.499200pt;}
.y14c{bottom:156.274533pt;}
.y11e{bottom:156.439867pt;}
.y150{bottom:156.509200pt;}
.y80{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.yc6{bottom:159.911733pt;}
.y28{bottom:160.189067pt;}
.yf8{bottom:161.359467pt;}
.yc5{bottom:169.280933pt;}
.y14b{bottom:174.946533pt;}
.y11d{bottom:175.111867pt;}
.y7f{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y27{bottom:178.855733pt;}
.y37{bottom:180.842133pt;}
.y14a{bottom:193.618533pt;}
.y11c{bottom:193.783867pt;}
.y7e{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y36{bottom:196.838133pt;}
.y26{bottom:197.522400pt;}
.y149{bottom:212.290533pt;}
.y11b{bottom:212.455867pt;}
.y7d{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.y35{bottom:212.834133pt;}
.y25{bottom:216.189067pt;}
.yf7{bottom:217.359467pt;}
.yf0{bottom:225.280933pt;}
.y34{bottom:228.830133pt;}
.y148{bottom:230.962533pt;}
.y11a{bottom:231.127867pt;}
.y7c{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y33{bottom:244.826133pt;}
.y147{bottom:249.634533pt;}
.y119{bottom:249.799867pt;}
.y7b{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y32{bottom:260.822133pt;}
.y146{bottom:268.306533pt;}
.y118{bottom:268.471867pt;}
.y7a{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.yf6{bottom:273.359467pt;}
.y31{bottom:276.818133pt;}
.y145{bottom:286.978533pt;}
.y117{bottom:287.143867pt;}
.y79{bottom:287.181067pt;}
.yc4{bottom:287.181200pt;}
.yea{bottom:287.330667pt;}
.y21{bottom:290.855733pt;}
.y30{bottom:292.814133pt;}
.ye2{bottom:293.673867pt;}
.y61{bottom:299.947600pt;}
.ye9{bottom:304.934667pt;}
.y144{bottom:305.650533pt;}
.y116{bottom:305.815867pt;}
.y78{bottom:305.847733pt;}
.yc3{bottom:305.847867pt;}
.y20{bottom:309.522400pt;}
.ye1{bottom:310.740533pt;}
.y2f{bottom:323.930133pt;}
.y143{bottom:324.322533pt;}
.y115{bottom:324.487867pt;}
.y77{bottom:324.514400pt;}
.yc2{bottom:324.514533pt;}
.ye0{bottom:327.807200pt;}
.yf5{bottom:329.721867pt;}
.y2e{bottom:339.930133pt;}
.y1f{bottom:339.954133pt;}
.y142{bottom:342.994533pt;}
.y114{bottom:343.159867pt;}
.y76{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.ydf{bottom:344.873867pt;}
.yde{bottom:348.607200pt;}
.yf2{bottom:354.069733pt;}
.y2d{bottom:355.930133pt;}
.yf4{bottom:355.947600pt;}
.y141{bottom:361.666533pt;}
.y113{bottom:361.831867pt;}
.y75{bottom:361.847733pt;}
.y5f{bottom:361.847867pt;}
.ydd{bottom:361.940533pt;}
.yed{bottom:365.306133pt;}
.yf1{bottom:371.673733pt;}
.y2c{bottom:371.930133pt;}
.ydc{bottom:379.007200pt;}
.y140{bottom:380.338533pt;}
.y112{bottom:380.503867pt;}
.y74{bottom:380.514400pt;}
.y5e{bottom:380.514533pt;}
.ydb{bottom:382.740533pt;}
.yec{bottom:382.910133pt;}
.yda{bottom:396.073867pt;}
.y13f{bottom:399.010533pt;}
.y111{bottom:399.175867pt;}
.y73{bottom:399.181067pt;}
.y5d{bottom:399.181200pt;}
.yeb{bottom:400.514133pt;}
.yef{bottom:402.657600pt;}
.yd9{bottom:413.140533pt;}
.y1e{bottom:415.309733pt;}
.yd8{bottom:416.873867pt;}
.y13e{bottom:417.682533pt;}
.y72{bottom:417.847733pt;}
.y5c{bottom:417.847867pt;}
.yee{bottom:420.261600pt;}
.yd7{bottom:430.207200pt;}
.y1d{bottom:432.913733pt;}
.y13d{bottom:436.354533pt;}
.y71{bottom:436.514400pt;}
.y5b{bottom:436.514533pt;}
.yd3{bottom:447.540533pt;}
.y110{bottom:449.280933pt;}
.yd6{bottom:454.207200pt;}
.y13c{bottom:455.026533pt;}
.y70{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.yc1{bottom:455.440533pt;}
.yd2{bottom:460.873867pt;}
.yd5{bottom:467.540533pt;}
.yc0{bottom:468.773867pt;}
.ycf{bottom:469.215200pt;}
.y1c{bottom:469.375467pt;}
.y13b{bottom:473.698533pt;}
.y6f{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.yd1{bottom:474.207200pt;}
.yd4{bottom:480.873867pt;}
.ycc{bottom:482.548533pt;}
.ybf{bottom:486.597867pt;}
.y1b{bottom:486.979467pt;}
.yd0{bottom:487.540533pt;}
.y13a{bottom:492.370533pt;}
.y6e{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.ybe{bottom:499.931200pt;}
.yce{bottom:504.223200pt;}
.y1a{bottom:504.583467pt;}
.y139{bottom:511.042533pt;}
.y6d{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y10f{bottom:516.026133pt;}
.ycd{bottom:517.556533pt;}
.ybd{bottom:517.755200pt;}
.y19{bottom:522.187467pt;}
.y138{bottom:529.714533pt;}
.y6c{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.ybc{bottom:531.088533pt;}
.y18{bottom:539.791467pt;}
.yf3{bottom:542.614267pt;}
.ycb{bottom:544.652667pt;}
.y137{bottom:548.386533pt;}
.y10e{bottom:548.509200pt;}
.y55{bottom:548.514533pt;}
.ybb{bottom:548.912533pt;}
.y17{bottom:557.395467pt;}
.yba{bottom:562.245867pt;}
.yca{bottom:562.256667pt;}
.ya0{bottom:563.433733pt;}
.y136{bottom:567.058533pt;}
.y10d{bottom:567.175867pt;}
.y54{bottom:567.181200pt;}
.y16{bottom:574.999467pt;}
.y9f{bottom:576.767067pt;}
.yb9{bottom:580.069867pt;}
.y135{bottom:585.730533pt;}
.y10c{bottom:585.842533pt;}
.y53{bottom:585.847867pt;}
.y9e{bottom:590.100400pt;}
.y15{bottom:592.603467pt;}
.yb8{bottom:593.403200pt;}
.y9d{bottom:603.433733pt;}
.y134{bottom:604.402533pt;}
.y10b{bottom:604.509200pt;}
.y52{bottom:604.514533pt;}
.yb7{bottom:606.736533pt;}
.y14{bottom:610.207467pt;}
.y9c{bottom:620.500400pt;}
.ye6{bottom:622.822267pt;}
.y133{bottom:623.074533pt;}
.y10a{bottom:623.175867pt;}
.y51{bottom:623.181200pt;}
.yb6{bottom:624.560533pt;}
.y13{bottom:627.811467pt;}
.y9b{bottom:633.833733pt;}
.yb5{bottom:637.893867pt;}
.ye5{bottom:640.426267pt;}
.y132{bottom:641.746533pt;}
.y50{bottom:641.847867pt;}
.y9a{bottom:647.167067pt;}
.yb4{bottom:651.227200pt;}
.y12{bottom:655.453600pt;}
.ye4{bottom:658.030267pt;}
.y131{bottom:660.418533pt;}
.y99{bottom:660.500400pt;}
.y4f{bottom:660.514533pt;}
.y109{bottom:665.359467pt;}
.yb3{bottom:669.051200pt;}
.y98{bottom:673.833733pt;}
.ye3{bottom:675.634267pt;}
.y130{bottom:679.090533pt;}
.y4e{bottom:679.181200pt;}
.yb2{bottom:686.875200pt;}
.y97{bottom:690.900400pt;}
.y12f{bottom:697.762533pt;}
.y108{bottom:697.789200pt;}
.y4d{bottom:697.847867pt;}
.yb1{bottom:700.208533pt;}
.y96{bottom:704.233733pt;}
.y12e{bottom:716.434533pt;}
.y107{bottom:716.461200pt;}
.y4c{bottom:716.514533pt;}
.y95{bottom:717.567067pt;}
.yb0{bottom:718.032533pt;}
.yc{bottom:725.926133pt;}
.y94{bottom:730.900400pt;}
.yaf{bottom:731.365867pt;}
.y12d{bottom:735.106533pt;}
.y106{bottom:735.133200pt;}
.y4b{bottom:735.181200pt;}
.yb{bottom:741.926133pt;}
.y93{bottom:747.967067pt;}
.yae{bottom:749.189867pt;}
.y12c{bottom:753.778533pt;}
.y105{bottom:753.805200pt;}
.y4a{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.y92{bottom:761.300400pt;}
.yad{bottom:762.523200pt;}
.y12b{bottom:772.450533pt;}
.y104{bottom:772.477200pt;}
.y49{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y91{bottom:774.633733pt;}
.yac{bottom:780.347200pt;}
.y90{bottom:787.967067pt;}
.y8{bottom:789.926133pt;}
.y12a{bottom:791.122533pt;}
.y103{bottom:791.149200pt;}
.y48{bottom:791.181200pt;}
.yab{bottom:793.680533pt;}
.y8f{bottom:801.300400pt;}
.y7{bottom:805.926133pt;}
.yaa{bottom:807.013867pt;}
.y129{bottom:809.794533pt;}
.y102{bottom:809.821200pt;}
.y47{bottom:809.847867pt;}
.y8e{bottom:818.367067pt;}
.y6{bottom:821.926133pt;}
.ya9{bottom:824.837867pt;}
.y128{bottom:828.466533pt;}
.y101{bottom:828.493200pt;}
.y46{bottom:828.514533pt;}
.y8d{bottom:835.433733pt;}
.ya8{bottom:838.171200pt;}
.y127{bottom:847.138533pt;}
.y100{bottom:847.165200pt;}
.y45{bottom:847.181200pt;}
.y8c{bottom:848.767067pt;}
.ya7{bottom:851.504533pt;}
.y5{bottom:853.044267pt;}
.y126{bottom:865.810533pt;}
.y8b{bottom:865.833733pt;}
.yff{bottom:865.837200pt;}
.y44{bottom:865.847867pt;}
.ya6{bottom:869.328533pt;}
.y4{bottom:870.644267pt;}
.ya5{bottom:882.661867pt;}
.y8a{bottom:882.900400pt;}
.y125{bottom:884.482533pt;}
.yfe{bottom:884.509200pt;}
.y43{bottom:884.514533pt;}
.y89{bottom:896.233733pt;}
.ya4{bottom:900.485867pt;}
.y124{bottom:903.154533pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y88{bottom:913.300400pt;}
.ya3{bottom:913.819200pt;}
.y123{bottom:921.826533pt;}
.y41{bottom:921.847867pt;}
.yfd{bottom:926.692667pt;}
.y87{bottom:930.367067pt;}
.ya2{bottom:931.643200pt;}
.y2{bottom:932.695600pt;}
.y122{bottom:940.498533pt;}
.y40{bottom:940.514533pt;}
.y86{bottom:948.639067pt;}
.ya1{bottom:949.467200pt;}
.yfc{bottom:959.170533pt;}
.y3f{bottom:959.181200pt;}
.y85{bottom:977.314133pt;}
.yfb{bottom:977.842533pt;}
.y3e{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.y84{bottom:994.918133pt;}
.y3d{bottom:996.514533pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h8{height:30.618750pt;}
.h7{height:30.806250pt;}
.h16{height:32.480017pt;}
.h6{height:32.481812pt;}
.h18{height:32.500833pt;}
.h13{height:33.979167pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h9{height:38.226562pt;}
.h11{height:38.273438pt;}
.h15{height:38.500000pt;}
.h10{height:38.507812pt;}
.h14{height:39.145833pt;}
.ha{height:42.083333pt;}
.hb{height:43.312500pt;}
.h17{height:43.328500pt;}
.h1b{height:43.333833pt;}
.hc{height:44.039062pt;}
.h1c{height:44.251167pt;}
.h19{height:44.601562pt;}
.h1a{height:46.291667pt;}
.he{height:48.125000pt;}
.hf{height:48.932292pt;}
.hd{height:50.500000pt;}
.h4{height:52.937500pt;}
.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;}
.x3{left:80.877867pt;}
.xc{left:95.167867pt;}
.xd{left:96.257467pt;}
.xf{left:99.768133pt;}
.x1e{left:103.204400pt;}
.x7{left:106.559067pt;}
.x8{left:108.473333pt;}
.x9{left:110.313733pt;}
.xe{left:123.864133pt;}
.x40{left:145.195733pt;}
.x30{left:148.694400pt;}
.x41{left:153.078400pt;}
.x2f{left:165.316400pt;}
.x24{left:168.687067pt;}
.x25{left:173.444400pt;}
.x26{left:175.951067pt;}
.x2b{left:178.265733pt;}
.x2e{left:180.569733pt;}
.x2d{left:183.503067pt;}
.x16{left:184.824133pt;}
.x17{left:185.986800pt;}
.x1d{left:187.362800pt;}
.x11{left:188.909467pt;}
.x19{left:190.424133pt;}
.x10{left:191.746800pt;}
.x18{left:195.128133pt;}
.x1f{left:196.399067pt;}
.x1a{left:197.784133pt;}
.x1c{left:206.616133pt;}
.x27{left:211.439067pt;}
.x29{left:213.060400pt;}
.x36{left:246.529067pt;}
.x31{left:248.278400pt;}
.x35{left:258.486400pt;}
.x5{left:266.834667pt;}
.x13{left:269.186800pt;}
.x12{left:270.360133pt;}
.x37{left:273.921067pt;}
.x6{left:281.954667pt;}
.x21{left:314.713733pt;}
.x20{left:315.887067pt;}
.x2a{left:318.820400pt;}
.x39{left:346.390400pt;}
.x4{left:352.045067pt;}
.x3b{left:354.177067pt;}
.x3a{left:356.022400pt;}
.x38{left:358.347733pt;}
.x14{left:359.629467pt;}
.x22{left:402.991067pt;}
.x3c{left:448.523733pt;}
.x32{left:450.582400pt;}
.x3d{left:454.433067pt;}
.x33{left:490.870400pt;}
.x3e{left:558.059733pt;}
.x3f{left:566.635733pt;}
.xb{left:574.124800pt;}
.xa{left:592.834133pt;}
.x23{left:626.351067pt;}
.x2c{left:632.964400pt;}
.x28{left:634.063067pt;}
.x1b{left:641.666800pt;}
.x34{left:646.486400pt;}
.x15{left:649.400133pt;}
.x1{left:712.140000pt;}
}




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