
    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_c1f72626745be6a9510a78df.woff')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_497a49934ea7096dccf4e982.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934500;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_3735e30ebb1ff7c906743ecc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.114000;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_716cde8535f7d4a86f4152f2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937000;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_499b19a01d718823aac3fb44.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_0f17c5cd15294033daf70327.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_acd121dd9b938fd82143b369.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_6464779af84c0f4a3051cc60.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730000;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_adb536edc724ab00ceecdf4f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.954102;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_68798a37ccae66ff81796b45.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937000;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_2fae4f603f748bf7483a9897.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_1da11dd0f2fb2c5b6664bb54.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_36a42e6e71e95f932901f900.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_efdc4166ececd6b89f0d0fa1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_99cbf5760eb612c71d14d77d.woff')format("woff");}.fff{font-family:fff;line-height:0.675781;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_b480c634bff64c2dd3fef964.woff')format("woff");}.ff10{font-family:ff10;line-height:0.677246;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);}
.v16{vertical-align:-31.968600px;}
.v10{vertical-align:-22.233600px;}
.vc{vertical-align:-19.980000px;}
.va{vertical-align:-17.723400px;}
.v14{vertical-align:-15.984000px;}
.v12{vertical-align:-14.525400px;}
.v4{vertical-align:-12.718200px;}
.v3{vertical-align:-11.528400px;}
.ve{vertical-align:-10.496400px;}
.v8{vertical-align:-5.860414px;}
.v7{vertical-align:-3.402821px;}
.v9{vertical-align:-2.174024px;}
.v5{vertical-align:-1.149000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.107600px;}
.vf{vertical-align:2.439600px;}
.v2{vertical-align:6.359400px;}
.v11{vertical-align:11.601720px;}
.v15{vertical-align:15.984000px;}
.v13{vertical-align:17.982000px;}
.vb{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.vd{vertical-align:39.960000px;}
.ls4b{letter-spacing:-4.656000px;}
.ls6{letter-spacing:-2.142000px;}
.ls16{letter-spacing:-1.748672px;}
.ls14{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-1.026000px;}
.ls15{letter-spacing:-1.020000px;}
.lsd{letter-spacing:-0.982800px;}
.ls27{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.810000px;}
.ls26{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.664620px;}
.ls49{letter-spacing:-0.624000px;}
.ls23{letter-spacing:-0.600000px;}
.ls42{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.528000px;}
.ls25{letter-spacing:-0.489720px;}
.lsb{letter-spacing:-0.486000px;}
.ls41{letter-spacing:-0.480000px;}
.ls40{letter-spacing:-0.384000px;}
.ls48{letter-spacing:-0.378000px;}
.ls4c{letter-spacing:-0.336000px;}
.ls4d{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.216000px;}
.ls4a{letter-spacing:-0.192000px;}
.ls39{letter-spacing:-0.104940px;}
.ls7{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000024px;}
.ls37{letter-spacing:0.000240px;}
.ls5{letter-spacing:0.020400px;}
.ls4{letter-spacing:0.021000px;}
.ls18{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.033000px;}
.lsf{letter-spacing:0.046285px;}
.ls33{letter-spacing:0.067284px;}
.ls2e{letter-spacing:0.105684px;}
.ls2b{letter-spacing:0.106284px;}
.ls46{letter-spacing:0.140400px;}
.ls31{letter-spacing:0.144684px;}
.ls30{letter-spacing:0.145284px;}
.ls10{letter-spacing:0.154031px;}
.ls45{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.420000px;}
.ls28{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.436200px;}
.ls44{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.960000px;}
.ls1b{letter-spacing:1.140000px;}
.ls1c{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.528800px;}
.ls1a{letter-spacing:1.609800px;}
.ls19{letter-spacing:1.620000px;}
.ls36{letter-spacing:1.656600px;}
.ls1e{letter-spacing:2.520000px;}
.ls1f{letter-spacing:2.563800px;}
.ls20{letter-spacing:14.220000px;}
.ls47{letter-spacing:24.709800px;}
.ls3{letter-spacing:43.199424px;}
.ls0{letter-spacing:43.199928px;}
.ls2{letter-spacing:43.220544px;}
.ls1{letter-spacing:43.220976px;}
.ls11{letter-spacing:85.590395px;}
.ls3a{letter-spacing:90.168456px;}
.ls3d{letter-spacing:269.076168px;}
.ls3c{letter-spacing:274.003728px;}
.lse{letter-spacing:322.819631px;}
.ls3e{letter-spacing:357.161400px;}
.ls3b{letter-spacing:417.396000px;}
.ls35{letter-spacing:590.389770px;}
.ls34{letter-spacing:590.393682px;}
.ls2c{letter-spacing:772.854084px;}
.ls12{letter-spacing:804.719858px;}
.ls2d{letter-spacing:810.775284px;}
.ls2f{letter-spacing:827.701884px;}
.ls32{letter-spacing:997.318884px;}
.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;}
}
.ws3{word-spacing:-54.000000px;}
.ws14b{word-spacing:-48.000000px;}
.ws79{word-spacing:-27.840000px;}
.ws9{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.ws6d{word-spacing:-16.302000px;}
.ws78{word-spacing:-16.140000px;}
.ws6e{word-spacing:-15.774000px;}
.ws75{word-spacing:-15.240000px;}
.ws77{word-spacing:-15.120000px;}
.ws126{word-spacing:-14.820000px;}
.ws76{word-spacing:-14.760000px;}
.ws108{word-spacing:-14.580000px;}
.wsae{word-spacing:-14.040000px;}
.ws2b{word-spacing:-13.740000px;}
.ws2c{word-spacing:-13.620000px;}
.ws71{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.338000px;}
.ws72{word-spacing:-13.140000px;}
.ws2e{word-spacing:-13.138669px;}
.wsb1{word-spacing:-13.080000px;}
.ws2d{word-spacing:-13.020000px;}
.ws7a{word-spacing:-12.840000px;}
.ws4{word-spacing:-12.798000px;}
.ws73{word-spacing:-12.780000px;}
.ws7{word-spacing:-12.258000px;}
.ws189{word-spacing:-11.934000px;}
.ws8{word-spacing:-11.718000px;}
.ws5{word-spacing:-11.448000px;}
.ws127{word-spacing:-11.328000px;}
.ws0{word-spacing:-11.214000px;}
.wsb5{word-spacing:-11.178000px;}
.wse0{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.896000px;}
.ws149{word-spacing:-10.704000px;}
.wsd3{word-spacing:-10.416000px;}
.wsde{word-spacing:-10.320000px;}
.ws188{word-spacing:-10.176000px;}
.wsd2{word-spacing:-9.936000px;}
.ws2f{word-spacing:-9.854044px;}
.ws70{word-spacing:-8.010420px;}
.ws6f{word-spacing:-7.940460px;}
.wsb0{word-spacing:-7.835520px;}
.ws74{word-spacing:-7.450740px;}
.wsaf{word-spacing:-7.275840px;}
.wsb4{word-spacing:-7.146414px;}
.wsdf{word-spacing:-6.352368px;}
.ws14a{word-spacing:-6.336000px;}
.wsed{word-spacing:-3.720000px;}
.ws9c{word-spacing:-3.540000px;}
.ws69{word-spacing:-3.360000px;}
.ws197{word-spacing:-3.120000px;}
.ws120{word-spacing:-3.060000px;}
.wsf9{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.700000px;}
.wse2{word-spacing:-2.640000px;}
.wsbd{word-spacing:-2.580000px;}
.ws36{word-spacing:-2.520000px;}
.wsf4{word-spacing:-2.460000px;}
.ws140{word-spacing:-2.430000px;}
.wsf7{word-spacing:-2.400000px;}
.ws141{word-spacing:-2.322000px;}
.ws176{word-spacing:-2.304000px;}
.wscc{word-spacing:-2.280000px;}
.ws96{word-spacing:-2.220000px;}
.wsf0{word-spacing:-2.160000px;}
.ws190{word-spacing:-2.112000px;}
.ws8e{word-spacing:-2.100000px;}
.ws15f{word-spacing:-2.064000px;}
.ws1d{word-spacing:-2.040000px;}
.ws192{word-spacing:-2.016000px;}
.wse3{word-spacing:-1.980000px;}
.ws18f{word-spacing:-1.968000px;}
.ws1b{word-spacing:-1.944000px;}
.ws101{word-spacing:-1.920000px;}
.wsa{word-spacing:-1.890000px;}
.ws12f{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.836000px;}
.ws19e{word-spacing:-1.824000px;}
.wsca{word-spacing:-1.800000px;}
.ws119{word-spacing:-1.740000px;}
.ws16b{word-spacing:-1.728000px;}
.ws115{word-spacing:-1.680000px;}
.ws1bc{word-spacing:-1.674000px;}
.ws156{word-spacing:-1.632000px;}
.ws4c{word-spacing:-1.620000px;}
.ws107{word-spacing:-1.584000px;}
.ws133{word-spacing:-1.560000px;}
.ws14e{word-spacing:-1.536000px;}
.wsa3{word-spacing:-1.500000px;}
.ws15e{word-spacing:-1.488000px;}
.ws64{word-spacing:-1.440000px;}
.ws15{word-spacing:-1.404000px;}
.ws150{word-spacing:-1.392000px;}
.ws102{word-spacing:-1.380000px;}
.ws134{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.260000px;}
.ws19a{word-spacing:-1.248000px;}
.ws81{word-spacing:-1.140000px;}
.ws28{word-spacing:-1.058400px;}
.ws160{word-spacing:-1.056000px;}
.ws15a{word-spacing:-1.008000px;}
.ws13{word-spacing:-0.972000px;}
.wsfc{word-spacing:-0.960000px;}
.ws2a{word-spacing:-0.936000px;}
.ws12{word-spacing:-0.918000px;}
.ws157{word-spacing:-0.912000px;}
.ws7b{word-spacing:-0.900000px;}
.ws181{word-spacing:-0.864000px;}
.ws9f{word-spacing:-0.780000px;}
.ws1e{word-spacing:-0.720000px;}
.ws18a{word-spacing:-0.672000px;}
.ws112{word-spacing:-0.660000px;}
.ws89{word-spacing:-0.600000px;}
.ws54{word-spacing:-0.540000px;}
.wsf5{word-spacing:-0.480000px;}
.ws147{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.420000px;}
.ws19c{word-spacing:-0.384000px;}
.ws6b{word-spacing:-0.300000px;}
.ws16c{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.270000px;}
.ws84{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.180000px;}
.wsa2{word-spacing:-0.120000px;}
.ws179{word-spacing:-0.096000px;}
.ws27{word-spacing:-0.075600px;}
.wsbb{word-spacing:-0.060000px;}
.ws1b0{word-spacing:-0.048000px;}
.wsb3{word-spacing:-0.044622px;}
.wsb2{word-spacing:-0.033466px;}
.wsb{word-spacing:0.000000px;}
.wsa0{word-spacing:0.060000px;}
.ws18b{word-spacing:0.144000px;}
.ws124{word-spacing:0.162000px;}
.ws97{word-spacing:0.240000px;}
.ws19f{word-spacing:0.288000px;}
.ws67{word-spacing:0.300000px;}
.wsc3{word-spacing:0.360000px;}
.ws26{word-spacing:0.378000px;}
.ws17c{word-spacing:0.384000px;}
.ws12b{word-spacing:0.420000px;}
.wsc4{word-spacing:0.480000px;}
.ws125{word-spacing:0.486000px;}
.ws151{word-spacing:0.528000px;}
.ws29{word-spacing:0.540000px;}
.ws161{word-spacing:0.576000px;}
.ws111{word-spacing:0.600000px;}
.ws15b{word-spacing:0.624000px;}
.ws13d{word-spacing:0.648000px;}
.ws130{word-spacing:0.720000px;}
.ws159{word-spacing:0.768000px;}
.ws88{word-spacing:0.780000px;}
.ws162{word-spacing:0.816000px;}
.ws53{word-spacing:0.840000px;}
.wsff{word-spacing:0.900000px;}
.ws8a{word-spacing:0.960000px;}
.ws16{word-spacing:0.972000px;}
.wsc9{word-spacing:1.020000px;}
.ws19d{word-spacing:1.056000px;}
.ws61{word-spacing:1.080000px;}
.ws14f{word-spacing:1.104000px;}
.ws195{word-spacing:1.200000px;}
.ws8f{word-spacing:1.260000px;}
.ws135{word-spacing:1.296000px;}
.ws43{word-spacing:1.320000px;}
.ws16d{word-spacing:1.344000px;}
.ws8b{word-spacing:1.380000px;}
.ws19b{word-spacing:1.392000px;}
.ws100{word-spacing:1.440000px;}
.ws17{word-spacing:1.458000px;}
.ws153{word-spacing:1.488000px;}
.wse4{word-spacing:1.500000px;}
.ws90{word-spacing:1.560000px;}
.ws48{word-spacing:1.620000px;}
.ws145{word-spacing:1.632000px;}
.wsd0{word-spacing:1.674000px;}
.ws37{word-spacing:1.680000px;}
.ws3d{word-spacing:1.740000px;}
.ws6c{word-spacing:1.748672px;}
.ws187{word-spacing:1.776000px;}
.ws105{word-spacing:1.782000px;}
.ws68{word-spacing:1.800000px;}
.ws199{word-spacing:1.824000px;}
.wscf{word-spacing:1.836000px;}
.ws9a{word-spacing:1.860000px;}
.ws1ad{word-spacing:1.872000px;}
.wsc0{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.ws17e{word-spacing:2.016000px;}
.wsa4{word-spacing:2.040000px;}
.ws1a2{word-spacing:2.064000px;}
.wsb7{word-spacing:2.100000px;}
.ws121{word-spacing:2.160000px;}
.ws1b8{word-spacing:2.214000px;}
.ws52{word-spacing:2.220000px;}
.ws17a{word-spacing:2.256000px;}
.wsb6{word-spacing:2.280000px;}
.ws4a{word-spacing:2.340000px;}
.ws16e{word-spacing:2.352000px;}
.ws4b{word-spacing:2.400000px;}
.ws15d{word-spacing:2.448000px;}
.ws41{word-spacing:2.460000px;}
.ws139{word-spacing:2.484000px;}
.ws87{word-spacing:2.520000px;}
.ws1a8{word-spacing:2.544000px;}
.ws4e{word-spacing:2.580000px;}
.ws175{word-spacing:2.640000px;}
.ws152{word-spacing:2.688000px;}
.ws114{word-spacing:2.700000px;}
.ws194{word-spacing:2.736000px;}
.ws11{word-spacing:2.754000px;}
.wsbc{word-spacing:2.760000px;}
.ws158{word-spacing:2.784000px;}
.ws128{word-spacing:2.820000px;}
.ws10{word-spacing:2.862000px;}
.ws7f{word-spacing:2.880000px;}
.ws60{word-spacing:2.940000px;}
.ws167{word-spacing:2.976000px;}
.ws104{word-spacing:3.000000px;}
.ws169{word-spacing:3.024000px;}
.wsad{word-spacing:3.060000px;}
.ws185{word-spacing:3.072000px;}
.wsec{word-spacing:3.120000px;}
.ws136{word-spacing:3.132000px;}
.ws20{word-spacing:3.180000px;}
.ws1b3{word-spacing:3.216000px;}
.ws35{word-spacing:3.240000px;}
.ws164{word-spacing:3.264000px;}
.ws85{word-spacing:3.300000px;}
.ws146{word-spacing:3.312000px;}
.wsa6{word-spacing:3.360000px;}
.wseb{word-spacing:3.420000px;}
.ws21{word-spacing:3.480000px;}
.ws18{word-spacing:3.510000px;}
.wsf6{word-spacing:3.540000px;}
.ws106{word-spacing:3.552000px;}
.ws180{word-spacing:3.600000px;}
.ws93{word-spacing:3.660000px;}
.ws8c{word-spacing:3.720000px;}
.ws1a{word-spacing:3.726000px;}
.ws155{word-spacing:3.792000px;}
.wscb{word-spacing:3.840000px;}
.ws191{word-spacing:3.888000px;}
.ws9b{word-spacing:3.900000px;}
.ws4d{word-spacing:3.960000px;}
.ws184{word-spacing:3.984000px;}
.ws19{word-spacing:3.996000px;}
.ws165{word-spacing:4.032000px;}
.ws138{word-spacing:4.050000px;}
.ws80{word-spacing:4.080000px;}
.ws193{word-spacing:4.128000px;}
.ws22{word-spacing:4.140000px;}
.ws1f{word-spacing:4.200000px;}
.ws94{word-spacing:4.260000px;}
.ws110{word-spacing:4.320000px;}
.ws1b7{word-spacing:4.374000px;}
.wsba{word-spacing:4.380000px;}
.ws16a{word-spacing:4.416000px;}
.ws10a{word-spacing:4.440000px;}
.ws174{word-spacing:4.464000px;}
.ws186{word-spacing:4.512000px;}
.ws99{word-spacing:4.560000px;}
.ws7c{word-spacing:4.620000px;}
.ws62{word-spacing:4.680000px;}
.ws45{word-spacing:4.740000px;}
.ws168{word-spacing:4.752000px;}
.wsfe{word-spacing:4.800000px;}
.ws1b6{word-spacing:4.806000px;}
.ws11b{word-spacing:4.860000px;}
.wsf8{word-spacing:4.920000px;}
.ws23{word-spacing:4.980000px;}
.ws1ae{word-spacing:4.992000px;}
.ws118{word-spacing:5.040000px;}
.ws11a{word-spacing:5.100000px;}
.ws178{word-spacing:5.136000px;}
.ws6a{word-spacing:5.160000px;}
.ws95{word-spacing:5.220000px;}
.ws11e{word-spacing:5.280000px;}
.ws177{word-spacing:5.424000px;}
.wsab{word-spacing:5.460000px;}
.ws148{word-spacing:5.472000px;}
.wsa9{word-spacing:5.520000px;}
.ws5e{word-spacing:5.580000px;}
.ws1af{word-spacing:5.616000px;}
.wsf1{word-spacing:5.640000px;}
.ws15c{word-spacing:5.664000px;}
.ws11c{word-spacing:5.700000px;}
.ws198{word-spacing:5.712000px;}
.ws8d{word-spacing:5.760000px;}
.ws173{word-spacing:5.808000px;}
.ws5d{word-spacing:5.820000px;}
.ws1b2{word-spacing:5.856000px;}
.wsfd{word-spacing:5.940000px;}
.ws12e{word-spacing:6.000000px;}
.wsf3{word-spacing:6.060000px;}
.ws196{word-spacing:6.096000px;}
.ws66{word-spacing:6.120000px;}
.ws137{word-spacing:6.156000px;}
.ws9e{word-spacing:6.180000px;}
.ws11d{word-spacing:6.240000px;}
.ws10f{word-spacing:6.300000px;}
.ws5f{word-spacing:6.360000px;}
.ws1a6{word-spacing:6.384000px;}
.ws117{word-spacing:6.420000px;}
.wse{word-spacing:6.426000px;}
.ws129{word-spacing:6.480000px;}
.ws11f{word-spacing:6.540000px;}
.wse5{word-spacing:6.600000px;}
.ws3a{word-spacing:6.660000px;}
.ws30{word-spacing:6.720000px;}
.ws1a4{word-spacing:6.768000px;}
.ws17f{word-spacing:6.816000px;}
.ws16f{word-spacing:6.864000px;}
.ws7d{word-spacing:6.900000px;}
.ws46{word-spacing:6.960000px;}
.ws55{word-spacing:7.020000px;}
.ws122{word-spacing:7.080000px;}
.ws113{word-spacing:7.140000px;}
.ws17b{word-spacing:7.248000px;}
.ws3f{word-spacing:7.260000px;}
.ws143{word-spacing:7.296000px;}
.ws170{word-spacing:7.344000px;}
.wsaa{word-spacing:7.380000px;}
.ws1a3{word-spacing:7.392000px;}
.ws58{word-spacing:7.440000px;}
.ws65{word-spacing:7.500000px;}
.wsf{word-spacing:7.506000px;}
.wsc8{word-spacing:7.560000px;}
.wsce{word-spacing:7.620000px;}
.ws49{word-spacing:7.680000px;}
.ws1bb{word-spacing:7.722000px;}
.ws4f{word-spacing:7.740000px;}
.ws154{word-spacing:7.776000px;}
.ws47{word-spacing:7.800000px;}
.ws18c{word-spacing:7.824000px;}
.ws83{word-spacing:7.920000px;}
.ws182{word-spacing:7.968000px;}
.wsfa{word-spacing:7.980000px;}
.ws163{word-spacing:8.016000px;}
.ws171{word-spacing:8.064000px;}
.wsef{word-spacing:8.100000px;}
.ws39{word-spacing:8.160000px;}
.ws12a{word-spacing:8.340000px;}
.ws166{word-spacing:8.352000px;}
.ws1ba{word-spacing:8.370000px;}
.ws109{word-spacing:8.460000px;}
.wsbe{word-spacing:8.580000px;}
.wsbf{word-spacing:8.700000px;}
.wsb8{word-spacing:8.820000px;}
.ws1a5{word-spacing:8.832000px;}
.ws12d{word-spacing:9.120000px;}
.ws13c{word-spacing:9.180000px;}
.wsf2{word-spacing:9.240000px;}
.wsc1{word-spacing:9.300000px;}
.ws103{word-spacing:9.360000px;}
.ws1a1{word-spacing:9.408000px;}
.ws51{word-spacing:9.480000px;}
.ws1ac{word-spacing:9.504000px;}
.ws7e{word-spacing:9.540000px;}
.ws183{word-spacing:9.552000px;}
.ws144{word-spacing:9.600000px;}
.wsfb{word-spacing:9.840000px;}
.ws31{word-spacing:9.900000px;}
.ws3e{word-spacing:9.960000px;}
.ws50{word-spacing:10.020000px;}
.ws10e{word-spacing:10.080000px;}
.ws10b{word-spacing:10.200000px;}
.ws25{word-spacing:10.260000px;}
.wsc7{word-spacing:10.440000px;}
.ws12c{word-spacing:10.560000px;}
.wsc5{word-spacing:10.620000px;}
.ws38{word-spacing:10.680000px;}
.wsa7{word-spacing:10.740000px;}
.ws3b{word-spacing:10.800000px;}
.wsea{word-spacing:10.860000px;}
.ws5a{word-spacing:10.920000px;}
.wsc6{word-spacing:11.160000px;}
.ws32{word-spacing:11.220000px;}
.ws3c{word-spacing:11.280000px;}
.wse9{word-spacing:11.340000px;}
.ws14c{word-spacing:11.424000px;}
.ws1b5{word-spacing:11.772000px;}
.ws5c{word-spacing:11.820000px;}
.ws13e{word-spacing:11.934000px;}
.wse1{word-spacing:12.240000px;}
.ws42{word-spacing:12.420000px;}
.ws34{word-spacing:12.480000px;}
.ws10d{word-spacing:12.540000px;}
.ws142{word-spacing:12.672000px;}
.ws1aa{word-spacing:12.720000px;}
.ws1a9{word-spacing:12.768000px;}
.ws63{word-spacing:12.960000px;}
.ws13b{word-spacing:13.014000px;}
.ws116{word-spacing:13.200000px;}
.ws132{word-spacing:13.260000px;}
.ws18d{word-spacing:13.392000px;}
.ws18e{word-spacing:13.488000px;}
.wsa1{word-spacing:13.560000px;}
.wsa8{word-spacing:13.620000px;}
.wsee{word-spacing:13.680000px;}
.ws13a{word-spacing:14.148000px;}
.ws1c{word-spacing:14.340000px;}
.wsa5{word-spacing:14.700000px;}
.wsc2{word-spacing:14.940000px;}
.ws10c{word-spacing:15.600000px;}
.ws5b{word-spacing:16.020000px;}
.ws1a0{word-spacing:16.032000px;}
.wsb9{word-spacing:16.272000px;}
.ws172{word-spacing:16.368000px;}
.ws1b1{word-spacing:16.464000px;}
.ws131{word-spacing:16.500000px;}
.wsac{word-spacing:16.560000px;}
.ws56{word-spacing:17.160000px;}
.ws14d{word-spacing:17.232000px;}
.wse7{word-spacing:17.460000px;}
.ws1ab{word-spacing:17.712000px;}
.ws57{word-spacing:17.940000px;}
.wse6{word-spacing:18.300000px;}
.wscd{word-spacing:18.660000px;}
.ws1a7{word-spacing:18.864000px;}
.ws92{word-spacing:20.340000px;}
.wse8{word-spacing:20.520000px;}
.ws59{word-spacing:21.180000px;}
.ws13f{word-spacing:24.732000px;}
.ws1b4{word-spacing:26.622000px;}
.ws9d{word-spacing:28.320000px;}
.ws86{word-spacing:30.240000px;}
.ws82{word-spacing:30.300000px;}
.ws17d{word-spacing:31.104000px;}
.ws1b9{word-spacing:34.884000px;}
.wsd1{word-spacing:48.706800px;}
.ws91{word-spacing:59.640000px;}
.ws98{word-spacing:63.120000px;}
.wsdb{word-spacing:320.345400px;}
.wsd7{word-spacing:320.489400px;}
.wsd5{word-spacing:321.113400px;}
.wsda{word-spacing:323.129400px;}
.wsd4{word-spacing:324.377400px;}
.wsd8{word-spacing:325.769400px;}
.wsd6{word-spacing:326.489400px;}
.wsd9{word-spacing:330.857400px;}
.wsdc{word-spacing:332.585400px;}
.wsdd{word-spacing:332.921400px;}
.ws123{word-spacing:1569.727800px;}
._a{margin-left:-2823.847200px;}
._3{margin-left:-7.128000px;}
._6{margin-left:-5.256600px;}
._9{margin-left:-4.136400px;}
._2{margin-left:-2.772000px;}
._0{margin-left:-1.386000px;}
._4{width:1.068600px;}
._1{width:2.079000px;}
._10{width:3.531600px;}
._d{width:4.602600px;}
._e{width:7.050000px;}
._13{width:8.323800px;}
._14{width:9.409200px;}
._8{width:15.839400px;}
._7{width:16.944000px;}
._5{width:22.320000px;}
._12{width:28.282800px;}
._c{width:30.640200px;}
._23{width:43.324200px;}
._f{width:59.956800px;}
._11{width:62.302800px;}
._21{width:104.965800px;}
._1c{width:133.453800px;}
._20{width:135.220800px;}
._1e{width:144.973800px;}
._22{width:177.241200px;}
._1d{width:188.760600px;}
._1f{width:200.280600px;}
._1b{width:213.765600px;}
._15{width:407.934324px;}
._18{width:414.627624px;}
._16{width:441.222336px;}
._1a{width:443.453436px;}
._19{width:446.933952px;}
._17{width:459.294246px;}
._b{width:2370.207000px;}
.fc4{color:rgb(59,75,167);}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:27.984000px;}
.fs10{font-size:31.482000px;}
.fsf{font-size:33.466200px;}
.fsd{font-size:34.980000px;}
.fsb{font-size:35.446200px;}
.fs8{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:44.622000px;}
.fs9{font-size:45.000000px;}
.fsa{font-size:47.261400px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs12{font-size:74.172000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.403950px;}
.yf8{bottom:5.099700px;}
.y26{bottom:64.661700px;}
.y25{bottom:77.261700px;}
.y24{bottom:89.861700px;}
.y138{bottom:106.352850px;}
.y105{bottom:106.499250px;}
.y11c{bottom:107.291250px;}
.y134{bottom:107.291400px;}
.y52{bottom:123.307050px;}
.y104{bottom:124.499250px;}
.y14a{bottom:125.267700px;}
.y11b{bottom:125.291250px;}
.yb3{bottom:125.291400px;}
.y12f{bottom:125.495250px;}
.y184{bottom:130.315500px;}
.y12e{bottom:140.495250px;}
.y149{bottom:143.267700px;}
.y11a{bottom:143.291250px;}
.y21{bottom:143.291400px;}
.y65{bottom:144.603000px;}
.yf7{bottom:145.794000px;}
.y183{bottom:148.315500px;}
.y7d{bottom:151.067801px;}
.ydc{bottom:151.929750px;}
.yf6{bottom:152.114746px;}
.y12d{bottom:159.480450px;}
.y7f{bottom:159.514800px;}
.y148{bottom:161.267700px;}
.y119{bottom:161.291250px;}
.y20{bottom:161.291400px;}
.y182{bottom:166.315500px;}
.y80{bottom:166.601850px;}
.ydb{bottom:167.936700px;}
.yd7{bottom:168.207750px;}
.yec{bottom:168.740400px;}
.ye8{bottom:169.001850px;}
.y12c{bottom:175.857900px;}
.y62{bottom:178.468500px;}
.y147{bottom:179.267700px;}
.y118{bottom:179.291250px;}
.y1f{bottom:179.291400px;}
.y7a{bottom:182.111550px;}
.yed{bottom:182.132850px;}
.y59{bottom:183.781350px;}
.y181{bottom:184.315500px;}
.y5d{bottom:192.017250px;}
.yd8{bottom:192.225542px;}
.y12b{bottom:192.235350px;}
.ye9{bottom:193.019642px;}
.y5f{bottom:194.407783px;}
.y146{bottom:197.267700px;}
.y117{bottom:197.291250px;}
.y1e{bottom:197.291400px;}
.yda{bottom:199.960200px;}
.yeb{bottom:200.754300px;}
.y180{bottom:202.315500px;}
.y5e{bottom:204.273600px;}
.y12a{bottom:208.612650px;}
.y5a{bottom:209.314321px;}
.y116{bottom:215.291250px;}
.y23{bottom:215.291400px;}
.yd9{bottom:215.957400px;}
.yea{bottom:216.770850px;}
.y5c{bottom:217.822350px;}
.y17f{bottom:220.315500px;}
.y129{bottom:224.990100px;}
.y145{bottom:228.023550px;}
.y60{bottom:229.794756px;}
.y115{bottom:233.291250px;}
.y22{bottom:233.291400px;}
.y5b{bottom:234.550500px;}
.y17e{bottom:238.315500px;}
.y1d{bottom:240.529200px;}
.y128{bottom:241.367550px;}
.y114{bottom:251.291250px;}
.yb2{bottom:251.291400px;}
.yf5{bottom:253.495930px;}
.y61{bottom:255.022350px;}
.y17d{bottom:256.315500px;}
.y127{bottom:257.745000px;}
.y76{bottom:267.155700px;}
.ye1{bottom:267.222150px;}
.ydd{bottom:267.483750px;}
.y113{bottom:269.291250px;}
.yb1{bottom:269.291400px;}
.ye6{bottom:269.401050px;}
.yd5{bottom:269.449500px;}
.yd1{bottom:269.710950px;}
.yf2{bottom:270.572700px;}
.yee{bottom:270.843900px;}
.y126{bottom:274.122450px;}
.y17c{bottom:274.315500px;}
.ye2{bottom:275.230650px;}
.ye7{bottom:277.419000px;}
.yd6{bottom:277.728900px;}
.yf3{bottom:278.842500px;}
.y112{bottom:287.291250px;}
.yb0{bottom:287.291400px;}
.y125{bottom:290.499750px;}
.yde{bottom:291.501542px;}
.y17b{bottom:292.315500px;}
.ye3{bottom:293.690042px;}
.yd2{bottom:293.751053px;}
.y70{bottom:294.068550px;}
.y73{bottom:294.160800px;}
.yef{bottom:294.861692px;}
.y78{bottom:298.300963px;}
.ye0{bottom:299.236050px;}
.ye5{bottom:301.414950px;}
.yd4{bottom:301.463250px;}
.yf1{bottom:302.596350px;}
.y75{bottom:302.960700px;}
.y111{bottom:305.291250px;}
.yaf{bottom:305.291400px;}
.y124{bottom:306.877200px;}
.y17a{bottom:310.315500px;}
.y79{bottom:311.392370px;}
.y77{bottom:312.183999px;}
.ydf{bottom:315.252750px;}
.y1c{bottom:316.804800px;}
.ye4{bottom:317.421750px;}
.yd3{bottom:317.479950px;}
.yf0{bottom:318.593550px;}
.y71{bottom:319.601521px;}
.y123{bottom:323.254650px;}
.y110{bottom:323.291250px;}
.yae{bottom:323.291400px;}
.y7b{bottom:323.637600px;}
.y144{bottom:325.741800px;}
.y74{bottom:327.811950px;}
.y179{bottom:328.315500px;}
.y81{bottom:330.657985px;}
.y66{bottom:333.352500px;}
.y7c{bottom:335.186400px;}
.y82{bottom:339.114600px;}
.y122{bottom:339.632100px;}
.y10f{bottom:341.291250px;}
.yad{bottom:341.291400px;}
.y1b{bottom:343.308750px;}
.y72{bottom:344.827350px;}
.y178{bottom:346.315500px;}
.yf4{bottom:348.864300px;}
.y53{bottom:349.206900px;}
.y121{bottom:356.009550px;}
.y10e{bottom:359.291250px;}
.yac{bottom:359.291400px;}
.y83{bottom:362.296317px;}
.ycc{bottom:363.157350px;}
.yd0{bottom:363.505800px;}
.yc8{bottom:363.718950px;}
.yc4{bottom:364.280550px;}
.y177{bottom:364.315500px;}
.yc0{bottom:364.542000px;}
.yfb{bottom:368.126700px;}
.y101{bottom:368.688300px;}
.y120{bottom:372.387000px;}
.y54{bottom:374.716241px;}
.y10d{bottom:377.291250px;}
.yab{bottom:377.291400px;}
.y176{bottom:382.315500px;}
.y6c{bottom:384.355500px;}
.y69{bottom:384.652950px;}
.y11f{bottom:387.387000px;}
.yc9{bottom:387.446191px;}
.ycd{bottom:387.785041px;}
.yc5{bottom:388.007791px;}
.yc1{bottom:388.559792px;}
.ycb{bottom:395.180850px;}
.y10c{bottom:395.291250px;}
.yaa{bottom:395.291400px;}
.ycf{bottom:395.500350px;}
.yc7{bottom:395.732700px;}
.yc3{bottom:396.294450px;}
.y55{bottom:399.965700px;}
.y175{bottom:400.315500px;}
.y1a{bottom:403.828350px;}
.y68{bottom:409.883700px;}
.y6b{bottom:410.173298px;}
.yca{bottom:411.178050px;}
.yce{bottom:411.517050px;}
.yc6{bottom:411.739800px;}
.yc2{bottom:412.311000px;}
.y58{bottom:412.693950px;}
.y10b{bottom:413.291250px;}
.ya9{bottom:413.291400px;}
.y11e{bottom:413.541000px;}
.y174{bottom:418.315500px;}
.y6a{bottom:420.027300px;}
.y19{bottom:421.828350px;}
.y13a{bottom:424.126350px;}
.y57{bottom:425.670679px;}
.y67{bottom:426.898950px;}
.y63{bottom:427.186200px;}
.y56{bottom:429.203469px;}
.y10a{bottom:431.291250px;}
.ya8{bottom:431.291400px;}
.y11d{bottom:431.541000px;}
.y13c{bottom:434.527500px;}
.y6f{bottom:435.699150px;}
.y6e{bottom:435.701498px;}
.y173{bottom:436.315500px;}
.y18{bottom:439.828350px;}
.y6d{bottom:445.555500px;}
.y109{bottom:449.291250px;}
.ya7{bottom:449.291400px;}
.y64{bottom:452.707356px;}
.yfe{bottom:453.737250px;}
.yfd{bottom:454.153650px;}
.y103{bottom:454.163400px;}
.y172{bottom:454.315500px;}
.y17{bottom:457.828350px;}
.y186{bottom:462.795750px;}
.yf9{bottom:465.996750px;}
.yff{bottom:466.558350px;}
.y108{bottom:467.291250px;}
.ya6{bottom:467.291400px;}
.y171{bottom:472.315500px;}
.y16{bottom:475.828350px;}
.y107{bottom:485.291250px;}
.ybc{bottom:485.291400px;}
.yfa{bottom:490.103786px;}
.y170{bottom:490.315500px;}
.y100{bottom:490.389600px;}
.ya5{bottom:490.535550px;}
.y102{bottom:492.084300px;}
.y185{bottom:493.551600px;}
.y15{bottom:493.828350px;}
.yfc{bottom:497.855550px;}
.y4f{bottom:503.291250px;}
.ybb{bottom:503.291400px;}
.y16f{bottom:508.315500px;}
.ya4{bottom:508.535550px;}
.y14{bottom:511.828350px;}
.y4e{bottom:521.291250px;}
.yba{bottom:521.291400px;}
.y143{bottom:523.741800px;}
.y16e{bottom:526.315500px;}
.y13{bottom:529.828350px;}
.y4d{bottom:539.291250px;}
.ya3{bottom:539.291400px;}
.y16d{bottom:544.315500px;}
.y12{bottom:556.332300px;}
.y4c{bottom:557.291250px;}
.ya2{bottom:557.291400px;}
.y16c{bottom:562.315500px;}
.y4b{bottom:575.291250px;}
.ya1{bottom:575.291400px;}
.y16b{bottom:580.315500px;}
.y133{bottom:589.559700px;}
.y4a{bottom:593.291250px;}
.ya0{bottom:593.291400px;}
.y16a{bottom:598.315500px;}
.y51{bottom:601.771650px;}
.y49{bottom:611.291250px;}
.y9f{bottom:611.291400px;}
.y11{bottom:612.600000px;}
.y169{bottom:616.315500px;}
.y48{bottom:629.291250px;}
.y9e{bottom:629.291400px;}
.y10{bottom:630.600000px;}
.y50{bottom:632.527500px;}
.y132{bottom:632.941950px;}
.y168{bottom:634.315500px;}
.y47{bottom:647.291250px;}
.y9d{bottom:647.291400px;}
.yf{bottom:648.600000px;}
.y167{bottom:652.315500px;}
.y46{bottom:665.291250px;}
.y9c{bottom:665.291400px;}
.y166{bottom:670.315500px;}
.y45{bottom:683.291250px;}
.y9b{bottom:683.291400px;}
.ye{bottom:683.607900px;}
.y142{bottom:685.741800px;}
.y165{bottom:688.315500px;}
.y44{bottom:701.291250px;}
.y9a{bottom:701.291400px;}
.y164{bottom:706.315500px;}
.y43{bottom:719.291250px;}
.y99{bottom:719.291400px;}
.y163{bottom:724.315500px;}
.yd{bottom:731.371650px;}
.y106{bottom:734.031450px;}
.y42{bottom:737.291250px;}
.y98{bottom:737.291400px;}
.y162{bottom:742.315500px;}
.y139{bottom:751.288200px;}
.y41{bottom:755.291250px;}
.y97{bottom:755.291400px;}
.yc{bottom:757.875600px;}
.y161{bottom:760.315500px;}
.y40{bottom:773.291250px;}
.y96{bottom:773.291400px;}
.y141{bottom:775.741950px;}
.yb{bottom:775.875600px;}
.y160{bottom:778.315500px;}
.y137{bottom:786.995850px;}
.y3f{bottom:791.291250px;}
.y95{bottom:791.291400px;}
.ya{bottom:793.875600px;}
.y15f{bottom:796.315500px;}
.y136{bottom:804.995850px;}
.y3e{bottom:809.291250px;}
.y94{bottom:809.291400px;}
.y9{bottom:811.875600px;}
.y13b{bottom:812.527500px;}
.y15e{bottom:814.315500px;}
.y135{bottom:822.995850px;}
.y3d{bottom:827.291250px;}
.y93{bottom:827.291400px;}
.y140{bottom:829.741950px;}
.y8{bottom:829.875600px;}
.y15d{bottom:832.315500px;}
.y3c{bottom:845.291250px;}
.y92{bottom:845.291400px;}
.y7{bottom:847.875600px;}
.y15c{bottom:850.315500px;}
.y3b{bottom:863.291250px;}
.y91{bottom:863.291400px;}
.y6{bottom:865.875600px;}
.y15b{bottom:868.315500px;}
.y3a{bottom:881.291250px;}
.y90{bottom:881.291400px;}
.y131{bottom:882.255750px;}
.y15a{bottom:886.315500px;}
.y5{bottom:892.379550px;}
.ybe{bottom:896.031450px;}
.y39{bottom:899.291250px;}
.yb9{bottom:899.291400px;}
.y159{bottom:904.315500px;}
.y4{bottom:913.979700px;}
.ybd{bottom:914.031450px;}
.y38{bottom:917.291250px;}
.yb8{bottom:917.291400px;}
.y8f{bottom:919.275600px;}
.y158{bottom:922.315500px;}
.y37{bottom:935.291250px;}
.yb7{bottom:935.291400px;}
.y8e{bottom:937.275600px;}
.y157{bottom:940.315500px;}
.y36{bottom:953.291250px;}
.yb6{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.y156{bottom:958.315500px;}
.ybf{bottom:968.031450px;}
.y8d{bottom:968.031600px;}
.y35{bottom:971.291250px;}
.yb5{bottom:971.291400px;}
.y155{bottom:976.315500px;}
.y34{bottom:989.291250px;}
.yb4{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y154{bottom:994.315500px;}
.y33{bottom:1007.291250px;}
.y8c{bottom:1007.291400px;}
.y153{bottom:1012.315500px;}
.y32{bottom:1025.291250px;}
.y8b{bottom:1025.291400px;}
.y1{bottom:1029.178200px;}
.y152{bottom:1030.315500px;}
.y31{bottom:1043.291250px;}
.y8a{bottom:1043.291400px;}
.y151{bottom:1048.315500px;}
.y30{bottom:1061.291250px;}
.y89{bottom:1061.291400px;}
.y13f{bottom:1063.741800px;}
.y150{bottom:1066.315500px;}
.y2f{bottom:1079.291250px;}
.y88{bottom:1079.291400px;}
.y14f{bottom:1084.315500px;}
.y2e{bottom:1097.291250px;}
.y87{bottom:1097.291400px;}
.y14e{bottom:1102.315500px;}
.y2d{bottom:1115.291250px;}
.y86{bottom:1115.291400px;}
.y13e{bottom:1117.693500px;}
.y14d{bottom:1120.315500px;}
.y29{bottom:1126.725000px;}
.y2c{bottom:1133.291250px;}
.y85{bottom:1133.291400px;}
.y14c{bottom:1138.315500px;}
.y130{bottom:1147.298250px;}
.y13d{bottom:1148.449350px;}
.y2b{bottom:1151.291250px;}
.y84{bottom:1151.291400px;}
.y14b{bottom:1156.315500px;}
.y28{bottom:1166.037750px;}
.y27{bottom:1183.789800px;}
.y2a{bottom:1193.518650px;}
.h23{height:25.056000px;}
.h15{height:25.823111px;}
.hc{height:27.575100px;}
.h20{height:32.486036px;}
.h17{height:32.507824px;}
.hd{height:32.827500px;}
.h18{height:33.553624px;}
.h1d{height:33.592024px;}
.h1c{height:33.592624px;}
.h19{height:33.593224px;}
.h1b{height:33.631624px;}
.he{height:33.947754px;}
.h4{height:34.272000px;}
.h12{height:34.407592px;}
.hf{height:34.430668px;}
.h1e{height:34.717136px;}
.h1a{height:34.947424px;}
.h5{height:35.016000px;}
.h1f{height:35.252600px;}
.h13{height:35.538268px;}
.h22{height:35.964576px;}
.h7{height:39.555000px;}
.h14{height:40.693358px;}
.h10{height:40.790068px;}
.h6{height:41.040000px;}
.h26{height:43.950000px;}
.h8{height:46.170000px;}
.h16{height:48.345000px;}
.h25{height:50.124047px;}
.hb{height:51.300000px;}
.h9{height:52.740000px;}
.h24{height:56.765625px;}
.ha{height:61.530000px;}
.h3{height:61.560000px;}
.h2{height:92.295000px;}
.h11{height:343.492500px;}
.h21{height:376.809000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:571.719000px;}
.w3{width:604.009500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:13.425000px;}
.x60{left:78.269400px;}
.x1{left:93.543300px;}
.x6b{left:96.095250px;}
.x6c{left:97.169850px;}
.x68{left:100.952100px;}
.x2{left:106.299150px;}
.xe{left:110.551200px;}
.x6d{left:139.584600px;}
.x4{left:145.222800px;}
.x2e{left:147.480450px;}
.x1b{left:160.597500px;}
.x28{left:162.177959px;}
.x61{left:168.008700px;}
.x26{left:172.453200px;}
.x27{left:182.299500px;}
.x2a{left:183.879000px;}
.x31{left:185.342250px;}
.x69{left:194.643450px;}
.x41{left:196.362300px;}
.x32{left:198.386100px;}
.x10{left:202.360950px;}
.x13{left:203.930100px;}
.x62{left:208.950750px;}
.x43{left:210.577650px;}
.x3{left:217.077000px;}
.x14{left:218.663841px;}
.x53{left:222.904800px;}
.x5d{left:227.706000px;}
.x55{left:229.613700px;}
.x15{left:233.396700px;}
.x54{left:236.269089px;}
.x5{left:239.963250px;}
.x3f{left:252.139500px;}
.x2f{left:254.173050px;}
.x40{left:266.005786px;}
.x30{left:268.028181px;}
.x63{left:271.961700px;}
.x11{left:277.803537px;}
.x42{left:280.230886px;}
.xd{left:293.828850px;}
.x6{left:295.057200px;}
.x52{left:299.046600px;}
.x4d{left:303.365550px;}
.x5e{left:317.455200px;}
.x12{left:319.878750px;}
.x4b{left:329.511150px;}
.x35{left:331.457550px;}
.x50{left:335.030850px;}
.x23{left:338.770950px;}
.x4c{left:342.555000px;}
.x36{left:344.501250px;}
.x51{left:348.074550px;}
.x22{left:352.596750px;}
.x5f{left:359.549550px;}
.x6a{left:362.575650px;}
.x5b{left:372.486750px;}
.xc{left:375.582450px;}
.x25{left:381.558220px;}
.x5c{left:386.397658px;}
.x58{left:391.145250px;}
.x4a{left:398.341950px;}
.x34{left:399.949500px;}
.x4e{left:403.861500px;}
.x20{left:411.878700px;}
.x33{left:414.144887px;}
.x4f{left:417.727786px;}
.x7{left:423.222900px;}
.x21{left:426.612441px;}
.x24{left:450.477157px;}
.x9{left:455.455950px;}
.x48{left:457.363200px;}
.x1c{left:463.609200px;}
.x59{left:466.901550px;}
.xf{left:472.464450px;}
.x8{left:479.907600px;}
.x46{left:485.900700px;}
.x39{left:487.043400px;}
.x47{left:498.944250px;}
.x3a{left:500.087100px;}
.x2b{left:520.227300px;}
.x5a{left:522.988650px;}
.x56{left:535.926000px;}
.x57{left:549.836908px;}
.x16{left:551.304300px;}
.x45{left:554.402100px;}
.x38{left:555.544800px;}
.x18{left:560.432400px;}
.x17{left:566.038041px;}
.x44{left:568.597786px;}
.x37{left:569.740337px;}
.x2c{left:582.919547px;}
.xb{left:601.212600px;}
.x2d{left:604.616850px;}
.x49{left:618.003750px;}
.x19{left:624.565650px;}
.x65{left:625.866900px;}
.x66{left:630.844200px;}
.x1a{left:639.299391px;}
.x3d{left:646.860900px;}
.x1d{left:654.360600px;}
.x3e{left:659.894850px;}
.x1f{left:668.411850px;}
.x67{left:676.357050px;}
.x1e{left:683.499000px;}
.xa{left:695.534100px;}
.x64{left:708.803664px;}
.x3c{left:715.352700px;}
.x3b{left:729.557837px;}
@media print{
.v16{vertical-align:-28.416533pt;}
.v10{vertical-align:-19.763200pt;}
.vc{vertical-align:-17.760000pt;}
.va{vertical-align:-15.754133pt;}
.v14{vertical-align:-14.208000pt;}
.v12{vertical-align:-12.911467pt;}
.v4{vertical-align:-11.305067pt;}
.v3{vertical-align:-10.247467pt;}
.ve{vertical-align:-9.330133pt;}
.v8{vertical-align:-5.209257pt;}
.v7{vertical-align:-3.024730pt;}
.v9{vertical-align:-1.932466pt;}
.v5{vertical-align:-1.021333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.984533pt;}
.vf{vertical-align:2.168533pt;}
.v2{vertical-align:5.652800pt;}
.v11{vertical-align:10.312640pt;}
.v15{vertical-align:14.208000pt;}
.v13{vertical-align:15.984000pt;}
.vb{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.vd{vertical-align:35.520000pt;}
.ls4b{letter-spacing:-4.138667pt;}
.ls6{letter-spacing:-1.904000pt;}
.ls16{letter-spacing:-1.554375pt;}
.ls14{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.912000pt;}
.ls15{letter-spacing:-0.906667pt;}
.lsd{letter-spacing:-0.873600pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.720000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.590773pt;}
.ls49{letter-spacing:-0.554667pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls42{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.469333pt;}
.ls25{letter-spacing:-0.435307pt;}
.lsb{letter-spacing:-0.432000pt;}
.ls41{letter-spacing:-0.426667pt;}
.ls40{letter-spacing:-0.341333pt;}
.ls48{letter-spacing:-0.336000pt;}
.ls4c{letter-spacing:-0.298667pt;}
.ls4d{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls4a{letter-spacing:-0.170667pt;}
.ls39{letter-spacing:-0.093280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000021pt;}
.ls37{letter-spacing:0.000213pt;}
.ls5{letter-spacing:0.018133pt;}
.ls4{letter-spacing:0.018667pt;}
.ls18{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.029333pt;}
.lsf{letter-spacing:0.041142pt;}
.ls33{letter-spacing:0.059808pt;}
.ls2e{letter-spacing:0.093941pt;}
.ls2b{letter-spacing:0.094475pt;}
.ls46{letter-spacing:0.124800pt;}
.ls31{letter-spacing:0.128608pt;}
.ls30{letter-spacing:0.129141pt;}
.ls10{letter-spacing:0.136916pt;}
.ls45{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls28{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.387733pt;}
.ls44{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.853333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.358933pt;}
.ls1a{letter-spacing:1.430933pt;}
.ls19{letter-spacing:1.440000pt;}
.ls36{letter-spacing:1.472533pt;}
.ls1e{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.278933pt;}
.ls20{letter-spacing:12.640000pt;}
.ls47{letter-spacing:21.964267pt;}
.ls3{letter-spacing:38.399488pt;}
.ls0{letter-spacing:38.399936pt;}
.ls2{letter-spacing:38.418261pt;}
.ls1{letter-spacing:38.418645pt;}
.ls11{letter-spacing:76.080351pt;}
.ls3a{letter-spacing:80.149739pt;}
.ls3d{letter-spacing:239.178816pt;}
.ls3c{letter-spacing:243.558869pt;}
.lse{letter-spacing:286.950783pt;}
.ls3e{letter-spacing:317.476800pt;}
.ls3b{letter-spacing:371.018667pt;}
.ls35{letter-spacing:524.790907pt;}
.ls34{letter-spacing:524.794384pt;}
.ls2c{letter-spacing:686.981408pt;}
.ls12{letter-spacing:715.306540pt;}
.ls2d{letter-spacing:720.689141pt;}
.ls2f{letter-spacing:735.735008pt;}
.ls32{letter-spacing:886.505675pt;}
.ws3{word-spacing:-48.000000pt;}
.ws14b{word-spacing:-42.666667pt;}
.ws79{word-spacing:-24.746667pt;}
.ws9{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.ws6d{word-spacing:-14.490667pt;}
.ws78{word-spacing:-14.346667pt;}
.ws6e{word-spacing:-14.021333pt;}
.ws75{word-spacing:-13.546667pt;}
.ws77{word-spacing:-13.440000pt;}
.ws126{word-spacing:-13.173333pt;}
.ws76{word-spacing:-13.120000pt;}
.ws108{word-spacing:-12.960000pt;}
.wsae{word-spacing:-12.480000pt;}
.ws2b{word-spacing:-12.213333pt;}
.ws2c{word-spacing:-12.106667pt;}
.ws71{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.856000pt;}
.ws72{word-spacing:-11.680000pt;}
.ws2e{word-spacing:-11.678817pt;}
.wsb1{word-spacing:-11.626667pt;}
.ws2d{word-spacing:-11.573333pt;}
.ws7a{word-spacing:-11.413333pt;}
.ws4{word-spacing:-11.376000pt;}
.ws73{word-spacing:-11.360000pt;}
.ws7{word-spacing:-10.896000pt;}
.ws189{word-spacing:-10.608000pt;}
.ws8{word-spacing:-10.416000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws127{word-spacing:-10.069333pt;}
.ws0{word-spacing:-9.968000pt;}
.wsb5{word-spacing:-9.936000pt;}
.wse0{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws149{word-spacing:-9.514667pt;}
.wsd3{word-spacing:-9.258667pt;}
.wsde{word-spacing:-9.173333pt;}
.ws188{word-spacing:-9.045333pt;}
.wsd2{word-spacing:-8.832000pt;}
.ws2f{word-spacing:-8.759150pt;}
.ws70{word-spacing:-7.120373pt;}
.ws6f{word-spacing:-7.058187pt;}
.wsb0{word-spacing:-6.964907pt;}
.ws74{word-spacing:-6.622880pt;}
.wsaf{word-spacing:-6.467413pt;}
.wsb4{word-spacing:-6.352368pt;}
.wsdf{word-spacing:-5.646549pt;}
.ws14a{word-spacing:-5.632000pt;}
.wsed{word-spacing:-3.306667pt;}
.ws9c{word-spacing:-3.146667pt;}
.ws69{word-spacing:-2.986667pt;}
.ws197{word-spacing:-2.773333pt;}
.ws120{word-spacing:-2.720000pt;}
.wsf9{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.400000pt;}
.wse2{word-spacing:-2.346667pt;}
.wsbd{word-spacing:-2.293333pt;}
.ws36{word-spacing:-2.240000pt;}
.wsf4{word-spacing:-2.186667pt;}
.ws140{word-spacing:-2.160000pt;}
.wsf7{word-spacing:-2.133333pt;}
.ws141{word-spacing:-2.064000pt;}
.ws176{word-spacing:-2.048000pt;}
.wscc{word-spacing:-2.026667pt;}
.ws96{word-spacing:-1.973333pt;}
.wsf0{word-spacing:-1.920000pt;}
.ws190{word-spacing:-1.877333pt;}
.ws8e{word-spacing:-1.866667pt;}
.ws15f{word-spacing:-1.834667pt;}
.ws1d{word-spacing:-1.813333pt;}
.ws192{word-spacing:-1.792000pt;}
.wse3{word-spacing:-1.760000pt;}
.ws18f{word-spacing:-1.749333pt;}
.ws1b{word-spacing:-1.728000pt;}
.ws101{word-spacing:-1.706667pt;}
.wsa{word-spacing:-1.680000pt;}
.ws12f{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.632000pt;}
.ws19e{word-spacing:-1.621333pt;}
.wsca{word-spacing:-1.600000pt;}
.ws119{word-spacing:-1.546667pt;}
.ws16b{word-spacing:-1.536000pt;}
.ws115{word-spacing:-1.493333pt;}
.ws1bc{word-spacing:-1.488000pt;}
.ws156{word-spacing:-1.450667pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws107{word-spacing:-1.408000pt;}
.ws133{word-spacing:-1.386667pt;}
.ws14e{word-spacing:-1.365333pt;}
.wsa3{word-spacing:-1.333333pt;}
.ws15e{word-spacing:-1.322667pt;}
.ws64{word-spacing:-1.280000pt;}
.ws15{word-spacing:-1.248000pt;}
.ws150{word-spacing:-1.237333pt;}
.ws102{word-spacing:-1.226667pt;}
.ws134{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.120000pt;}
.ws19a{word-spacing:-1.109333pt;}
.ws81{word-spacing:-1.013333pt;}
.ws28{word-spacing:-0.940800pt;}
.ws160{word-spacing:-0.938667pt;}
.ws15a{word-spacing:-0.896000pt;}
.ws13{word-spacing:-0.864000pt;}
.wsfc{word-spacing:-0.853333pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws12{word-spacing:-0.816000pt;}
.ws157{word-spacing:-0.810667pt;}
.ws7b{word-spacing:-0.800000pt;}
.ws181{word-spacing:-0.768000pt;}
.ws9f{word-spacing:-0.693333pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws18a{word-spacing:-0.597333pt;}
.ws112{word-spacing:-0.586667pt;}
.ws89{word-spacing:-0.533333pt;}
.ws54{word-spacing:-0.480000pt;}
.wsf5{word-spacing:-0.426667pt;}
.ws147{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.373333pt;}
.ws19c{word-spacing:-0.341333pt;}
.ws6b{word-spacing:-0.266667pt;}
.ws16c{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.240000pt;}
.ws84{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.160000pt;}
.wsa2{word-spacing:-0.106667pt;}
.ws179{word-spacing:-0.085333pt;}
.ws27{word-spacing:-0.067200pt;}
.wsbb{word-spacing:-0.053333pt;}
.ws1b0{word-spacing:-0.042667pt;}
.wsb3{word-spacing:-0.039664pt;}
.wsb2{word-spacing:-0.029748pt;}
.wsb{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.053333pt;}
.ws18b{word-spacing:0.128000pt;}
.ws124{word-spacing:0.144000pt;}
.ws97{word-spacing:0.213333pt;}
.ws19f{word-spacing:0.256000pt;}
.ws67{word-spacing:0.266667pt;}
.wsc3{word-spacing:0.320000pt;}
.ws26{word-spacing:0.336000pt;}
.ws17c{word-spacing:0.341333pt;}
.ws12b{word-spacing:0.373333pt;}
.wsc4{word-spacing:0.426667pt;}
.ws125{word-spacing:0.432000pt;}
.ws151{word-spacing:0.469333pt;}
.ws29{word-spacing:0.480000pt;}
.ws161{word-spacing:0.512000pt;}
.ws111{word-spacing:0.533333pt;}
.ws15b{word-spacing:0.554667pt;}
.ws13d{word-spacing:0.576000pt;}
.ws130{word-spacing:0.640000pt;}
.ws159{word-spacing:0.682667pt;}
.ws88{word-spacing:0.693333pt;}
.ws162{word-spacing:0.725333pt;}
.ws53{word-spacing:0.746667pt;}
.wsff{word-spacing:0.800000pt;}
.ws8a{word-spacing:0.853333pt;}
.ws16{word-spacing:0.864000pt;}
.wsc9{word-spacing:0.906667pt;}
.ws19d{word-spacing:0.938667pt;}
.ws61{word-spacing:0.960000pt;}
.ws14f{word-spacing:0.981333pt;}
.ws195{word-spacing:1.066667pt;}
.ws8f{word-spacing:1.120000pt;}
.ws135{word-spacing:1.152000pt;}
.ws43{word-spacing:1.173333pt;}
.ws16d{word-spacing:1.194667pt;}
.ws8b{word-spacing:1.226667pt;}
.ws19b{word-spacing:1.237333pt;}
.ws100{word-spacing:1.280000pt;}
.ws17{word-spacing:1.296000pt;}
.ws153{word-spacing:1.322667pt;}
.wse4{word-spacing:1.333333pt;}
.ws90{word-spacing:1.386667pt;}
.ws48{word-spacing:1.440000pt;}
.ws145{word-spacing:1.450667pt;}
.wsd0{word-spacing:1.488000pt;}
.ws37{word-spacing:1.493333pt;}
.ws3d{word-spacing:1.546667pt;}
.ws6c{word-spacing:1.554375pt;}
.ws187{word-spacing:1.578667pt;}
.ws105{word-spacing:1.584000pt;}
.ws68{word-spacing:1.600000pt;}
.ws199{word-spacing:1.621333pt;}
.wscf{word-spacing:1.632000pt;}
.ws9a{word-spacing:1.653333pt;}
.ws1ad{word-spacing:1.664000pt;}
.wsc0{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.ws17e{word-spacing:1.792000pt;}
.wsa4{word-spacing:1.813333pt;}
.ws1a2{word-spacing:1.834667pt;}
.wsb7{word-spacing:1.866667pt;}
.ws121{word-spacing:1.920000pt;}
.ws1b8{word-spacing:1.968000pt;}
.ws52{word-spacing:1.973333pt;}
.ws17a{word-spacing:2.005333pt;}
.wsb6{word-spacing:2.026667pt;}
.ws4a{word-spacing:2.080000pt;}
.ws16e{word-spacing:2.090667pt;}
.ws4b{word-spacing:2.133333pt;}
.ws15d{word-spacing:2.176000pt;}
.ws41{word-spacing:2.186667pt;}
.ws139{word-spacing:2.208000pt;}
.ws87{word-spacing:2.240000pt;}
.ws1a8{word-spacing:2.261333pt;}
.ws4e{word-spacing:2.293333pt;}
.ws175{word-spacing:2.346667pt;}
.ws152{word-spacing:2.389333pt;}
.ws114{word-spacing:2.400000pt;}
.ws194{word-spacing:2.432000pt;}
.ws11{word-spacing:2.448000pt;}
.wsbc{word-spacing:2.453333pt;}
.ws158{word-spacing:2.474667pt;}
.ws128{word-spacing:2.506667pt;}
.ws10{word-spacing:2.544000pt;}
.ws7f{word-spacing:2.560000pt;}
.ws60{word-spacing:2.613333pt;}
.ws167{word-spacing:2.645333pt;}
.ws104{word-spacing:2.666667pt;}
.ws169{word-spacing:2.688000pt;}
.wsad{word-spacing:2.720000pt;}
.ws185{word-spacing:2.730667pt;}
.wsec{word-spacing:2.773333pt;}
.ws136{word-spacing:2.784000pt;}
.ws20{word-spacing:2.826667pt;}
.ws1b3{word-spacing:2.858667pt;}
.ws35{word-spacing:2.880000pt;}
.ws164{word-spacing:2.901333pt;}
.ws85{word-spacing:2.933333pt;}
.ws146{word-spacing:2.944000pt;}
.wsa6{word-spacing:2.986667pt;}
.wseb{word-spacing:3.040000pt;}
.ws21{word-spacing:3.093333pt;}
.ws18{word-spacing:3.120000pt;}
.wsf6{word-spacing:3.146667pt;}
.ws106{word-spacing:3.157333pt;}
.ws180{word-spacing:3.200000pt;}
.ws93{word-spacing:3.253333pt;}
.ws8c{word-spacing:3.306667pt;}
.ws1a{word-spacing:3.312000pt;}
.ws155{word-spacing:3.370667pt;}
.wscb{word-spacing:3.413333pt;}
.ws191{word-spacing:3.456000pt;}
.ws9b{word-spacing:3.466667pt;}
.ws4d{word-spacing:3.520000pt;}
.ws184{word-spacing:3.541333pt;}
.ws19{word-spacing:3.552000pt;}
.ws165{word-spacing:3.584000pt;}
.ws138{word-spacing:3.600000pt;}
.ws80{word-spacing:3.626667pt;}
.ws193{word-spacing:3.669333pt;}
.ws22{word-spacing:3.680000pt;}
.ws1f{word-spacing:3.733333pt;}
.ws94{word-spacing:3.786667pt;}
.ws110{word-spacing:3.840000pt;}
.ws1b7{word-spacing:3.888000pt;}
.wsba{word-spacing:3.893333pt;}
.ws16a{word-spacing:3.925333pt;}
.ws10a{word-spacing:3.946667pt;}
.ws174{word-spacing:3.968000pt;}
.ws186{word-spacing:4.010667pt;}
.ws99{word-spacing:4.053333pt;}
.ws7c{word-spacing:4.106667pt;}
.ws62{word-spacing:4.160000pt;}
.ws45{word-spacing:4.213333pt;}
.ws168{word-spacing:4.224000pt;}
.wsfe{word-spacing:4.266667pt;}
.ws1b6{word-spacing:4.272000pt;}
.ws11b{word-spacing:4.320000pt;}
.wsf8{word-spacing:4.373333pt;}
.ws23{word-spacing:4.426667pt;}
.ws1ae{word-spacing:4.437333pt;}
.ws118{word-spacing:4.480000pt;}
.ws11a{word-spacing:4.533333pt;}
.ws178{word-spacing:4.565333pt;}
.ws6a{word-spacing:4.586667pt;}
.ws95{word-spacing:4.640000pt;}
.ws11e{word-spacing:4.693333pt;}
.ws177{word-spacing:4.821333pt;}
.wsab{word-spacing:4.853333pt;}
.ws148{word-spacing:4.864000pt;}
.wsa9{word-spacing:4.906667pt;}
.ws5e{word-spacing:4.960000pt;}
.ws1af{word-spacing:4.992000pt;}
.wsf1{word-spacing:5.013333pt;}
.ws15c{word-spacing:5.034667pt;}
.ws11c{word-spacing:5.066667pt;}
.ws198{word-spacing:5.077333pt;}
.ws8d{word-spacing:5.120000pt;}
.ws173{word-spacing:5.162667pt;}
.ws5d{word-spacing:5.173333pt;}
.ws1b2{word-spacing:5.205333pt;}
.wsfd{word-spacing:5.280000pt;}
.ws12e{word-spacing:5.333333pt;}
.wsf3{word-spacing:5.386667pt;}
.ws196{word-spacing:5.418667pt;}
.ws66{word-spacing:5.440000pt;}
.ws137{word-spacing:5.472000pt;}
.ws9e{word-spacing:5.493333pt;}
.ws11d{word-spacing:5.546667pt;}
.ws10f{word-spacing:5.600000pt;}
.ws5f{word-spacing:5.653333pt;}
.ws1a6{word-spacing:5.674667pt;}
.ws117{word-spacing:5.706667pt;}
.wse{word-spacing:5.712000pt;}
.ws129{word-spacing:5.760000pt;}
.ws11f{word-spacing:5.813333pt;}
.wse5{word-spacing:5.866667pt;}
.ws3a{word-spacing:5.920000pt;}
.ws30{word-spacing:5.973333pt;}
.ws1a4{word-spacing:6.016000pt;}
.ws17f{word-spacing:6.058667pt;}
.ws16f{word-spacing:6.101333pt;}
.ws7d{word-spacing:6.133333pt;}
.ws46{word-spacing:6.186667pt;}
.ws55{word-spacing:6.240000pt;}
.ws122{word-spacing:6.293333pt;}
.ws113{word-spacing:6.346667pt;}
.ws17b{word-spacing:6.442667pt;}
.ws3f{word-spacing:6.453333pt;}
.ws143{word-spacing:6.485333pt;}
.ws170{word-spacing:6.528000pt;}
.wsaa{word-spacing:6.560000pt;}
.ws1a3{word-spacing:6.570667pt;}
.ws58{word-spacing:6.613333pt;}
.ws65{word-spacing:6.666667pt;}
.wsf{word-spacing:6.672000pt;}
.wsc8{word-spacing:6.720000pt;}
.wsce{word-spacing:6.773333pt;}
.ws49{word-spacing:6.826667pt;}
.ws1bb{word-spacing:6.864000pt;}
.ws4f{word-spacing:6.880000pt;}
.ws154{word-spacing:6.912000pt;}
.ws47{word-spacing:6.933333pt;}
.ws18c{word-spacing:6.954667pt;}
.ws83{word-spacing:7.040000pt;}
.ws182{word-spacing:7.082667pt;}
.wsfa{word-spacing:7.093333pt;}
.ws163{word-spacing:7.125333pt;}
.ws171{word-spacing:7.168000pt;}
.wsef{word-spacing:7.200000pt;}
.ws39{word-spacing:7.253333pt;}
.ws12a{word-spacing:7.413333pt;}
.ws166{word-spacing:7.424000pt;}
.ws1ba{word-spacing:7.440000pt;}
.ws109{word-spacing:7.520000pt;}
.wsbe{word-spacing:7.626667pt;}
.wsbf{word-spacing:7.733333pt;}
.wsb8{word-spacing:7.840000pt;}
.ws1a5{word-spacing:7.850667pt;}
.ws12d{word-spacing:8.106667pt;}
.ws13c{word-spacing:8.160000pt;}
.wsf2{word-spacing:8.213333pt;}
.wsc1{word-spacing:8.266667pt;}
.ws103{word-spacing:8.320000pt;}
.ws1a1{word-spacing:8.362667pt;}
.ws51{word-spacing:8.426667pt;}
.ws1ac{word-spacing:8.448000pt;}
.ws7e{word-spacing:8.480000pt;}
.ws183{word-spacing:8.490667pt;}
.ws144{word-spacing:8.533333pt;}
.wsfb{word-spacing:8.746667pt;}
.ws31{word-spacing:8.800000pt;}
.ws3e{word-spacing:8.853333pt;}
.ws50{word-spacing:8.906667pt;}
.ws10e{word-spacing:8.960000pt;}
.ws10b{word-spacing:9.066667pt;}
.ws25{word-spacing:9.120000pt;}
.wsc7{word-spacing:9.280000pt;}
.ws12c{word-spacing:9.386667pt;}
.wsc5{word-spacing:9.440000pt;}
.ws38{word-spacing:9.493333pt;}
.wsa7{word-spacing:9.546667pt;}
.ws3b{word-spacing:9.600000pt;}
.wsea{word-spacing:9.653333pt;}
.ws5a{word-spacing:9.706667pt;}
.wsc6{word-spacing:9.920000pt;}
.ws32{word-spacing:9.973333pt;}
.ws3c{word-spacing:10.026667pt;}
.wse9{word-spacing:10.080000pt;}
.ws14c{word-spacing:10.154667pt;}
.ws1b5{word-spacing:10.464000pt;}
.ws5c{word-spacing:10.506667pt;}
.ws13e{word-spacing:10.608000pt;}
.wse1{word-spacing:10.880000pt;}
.ws42{word-spacing:11.040000pt;}
.ws34{word-spacing:11.093333pt;}
.ws10d{word-spacing:11.146667pt;}
.ws142{word-spacing:11.264000pt;}
.ws1aa{word-spacing:11.306667pt;}
.ws1a9{word-spacing:11.349333pt;}
.ws63{word-spacing:11.520000pt;}
.ws13b{word-spacing:11.568000pt;}
.ws116{word-spacing:11.733333pt;}
.ws132{word-spacing:11.786667pt;}
.ws18d{word-spacing:11.904000pt;}
.ws18e{word-spacing:11.989333pt;}
.wsa1{word-spacing:12.053333pt;}
.wsa8{word-spacing:12.106667pt;}
.wsee{word-spacing:12.160000pt;}
.ws13a{word-spacing:12.576000pt;}
.ws1c{word-spacing:12.746667pt;}
.wsa5{word-spacing:13.066667pt;}
.wsc2{word-spacing:13.280000pt;}
.ws10c{word-spacing:13.866667pt;}
.ws5b{word-spacing:14.240000pt;}
.ws1a0{word-spacing:14.250667pt;}
.wsb9{word-spacing:14.464000pt;}
.ws172{word-spacing:14.549333pt;}
.ws1b1{word-spacing:14.634667pt;}
.ws131{word-spacing:14.666667pt;}
.wsac{word-spacing:14.720000pt;}
.ws56{word-spacing:15.253333pt;}
.ws14d{word-spacing:15.317333pt;}
.wse7{word-spacing:15.520000pt;}
.ws1ab{word-spacing:15.744000pt;}
.ws57{word-spacing:15.946667pt;}
.wse6{word-spacing:16.266667pt;}
.wscd{word-spacing:16.586667pt;}
.ws1a7{word-spacing:16.768000pt;}
.ws92{word-spacing:18.080000pt;}
.wse8{word-spacing:18.240000pt;}
.ws59{word-spacing:18.826667pt;}
.ws13f{word-spacing:21.984000pt;}
.ws1b4{word-spacing:23.664000pt;}
.ws9d{word-spacing:25.173333pt;}
.ws86{word-spacing:26.880000pt;}
.ws82{word-spacing:26.933333pt;}
.ws17d{word-spacing:27.648000pt;}
.ws1b9{word-spacing:31.008000pt;}
.wsd1{word-spacing:43.294933pt;}
.ws91{word-spacing:53.013333pt;}
.ws98{word-spacing:56.106667pt;}
.wsdb{word-spacing:284.751467pt;}
.wsd7{word-spacing:284.879467pt;}
.wsd5{word-spacing:285.434133pt;}
.wsda{word-spacing:287.226133pt;}
.wsd4{word-spacing:288.335467pt;}
.wsd8{word-spacing:289.572800pt;}
.wsd6{word-spacing:290.212800pt;}
.wsd9{word-spacing:294.095467pt;}
.wsdc{word-spacing:295.631467pt;}
.wsdd{word-spacing:295.930133pt;}
.ws123{word-spacing:1395.313600pt;}
._a{margin-left:-2510.086400pt;}
._3{margin-left:-6.336000pt;}
._6{margin-left:-4.672533pt;}
._9{margin-left:-3.676800pt;}
._2{margin-left:-2.464000pt;}
._0{margin-left:-1.232000pt;}
._4{width:0.949867pt;}
._1{width:1.848000pt;}
._10{width:3.139200pt;}
._d{width:4.091200pt;}
._e{width:6.266667pt;}
._13{width:7.398933pt;}
._14{width:8.363733pt;}
._8{width:14.079467pt;}
._7{width:15.061333pt;}
._5{width:19.840000pt;}
._12{width:25.140267pt;}
._c{width:27.235733pt;}
._23{width:38.510400pt;}
._f{width:53.294933pt;}
._11{width:55.380267pt;}
._21{width:93.302933pt;}
._1c{width:118.625600pt;}
._20{width:120.196267pt;}
._1e{width:128.865600pt;}
._22{width:157.547733pt;}
._1d{width:167.787200pt;}
._1f{width:178.027200pt;}
._1b{width:190.013867pt;}
._15{width:362.608288pt;}
._18{width:368.557888pt;}
._16{width:392.197632pt;}
._1a{width:394.180832pt;}
._19{width:397.274624pt;}
._17{width:408.261552pt;}
._b{width:2106.850667pt;}
.fs11{font-size:24.874667pt;}
.fs10{font-size:27.984000pt;}
.fsf{font-size:29.747733pt;}
.fsd{font-size:31.093333pt;}
.fsb{font-size:31.507733pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:39.664000pt;}
.fs9{font-size:40.000000pt;}
.fsa{font-size:42.010133pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs12{font-size:65.930667pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:3.025733pt;}
.yf8{bottom:4.533067pt;}
.y26{bottom:57.477067pt;}
.y25{bottom:68.677067pt;}
.y24{bottom:79.877067pt;}
.y138{bottom:94.535867pt;}
.y105{bottom:94.666000pt;}
.y11c{bottom:95.370000pt;}
.y134{bottom:95.370133pt;}
.y52{bottom:109.606267pt;}
.y104{bottom:110.666000pt;}
.y14a{bottom:111.349067pt;}
.y11b{bottom:111.370000pt;}
.yb3{bottom:111.370133pt;}
.y12f{bottom:111.551333pt;}
.y184{bottom:115.836000pt;}
.y12e{bottom:124.884667pt;}
.y149{bottom:127.349067pt;}
.y11a{bottom:127.370000pt;}
.y21{bottom:127.370133pt;}
.y65{bottom:128.536000pt;}
.yf7{bottom:129.594667pt;}
.y183{bottom:131.836000pt;}
.y7d{bottom:134.282490pt;}
.ydc{bottom:135.048667pt;}
.yf6{bottom:135.213108pt;}
.y12d{bottom:141.760400pt;}
.y7f{bottom:141.790933pt;}
.y148{bottom:143.349067pt;}
.y119{bottom:143.370000pt;}
.y20{bottom:143.370133pt;}
.y182{bottom:147.836000pt;}
.y80{bottom:148.090533pt;}
.ydb{bottom:149.277067pt;}
.yd7{bottom:149.518000pt;}
.yec{bottom:149.991467pt;}
.ye8{bottom:150.223867pt;}
.y12c{bottom:156.318133pt;}
.y62{bottom:158.638667pt;}
.y147{bottom:159.349067pt;}
.y118{bottom:159.370000pt;}
.y1f{bottom:159.370133pt;}
.y7a{bottom:161.876933pt;}
.yed{bottom:161.895867pt;}
.y59{bottom:163.361200pt;}
.y181{bottom:163.836000pt;}
.y5d{bottom:170.682000pt;}
.yd8{bottom:170.867148pt;}
.y12b{bottom:170.875867pt;}
.ye9{bottom:171.573015pt;}
.y5f{bottom:172.806918pt;}
.y146{bottom:175.349067pt;}
.y117{bottom:175.370000pt;}
.y1e{bottom:175.370133pt;}
.yda{bottom:177.742400pt;}
.yeb{bottom:178.448267pt;}
.y180{bottom:179.836000pt;}
.y5e{bottom:181.576533pt;}
.y12a{bottom:185.433467pt;}
.y5a{bottom:186.057175pt;}
.y116{bottom:191.370000pt;}
.y23{bottom:191.370133pt;}
.yd9{bottom:191.962133pt;}
.yea{bottom:192.685200pt;}
.y5c{bottom:193.619867pt;}
.y17f{bottom:195.836000pt;}
.y129{bottom:199.991200pt;}
.y145{bottom:202.687600pt;}
.y60{bottom:204.262005pt;}
.y115{bottom:207.370000pt;}
.y22{bottom:207.370133pt;}
.y5b{bottom:208.489333pt;}
.y17e{bottom:211.836000pt;}
.y1d{bottom:213.803733pt;}
.y128{bottom:214.548933pt;}
.y114{bottom:223.370000pt;}
.yb2{bottom:223.370133pt;}
.yf5{bottom:225.329716pt;}
.y61{bottom:226.686533pt;}
.y17d{bottom:227.836000pt;}
.y127{bottom:229.106667pt;}
.y76{bottom:237.471733pt;}
.ye1{bottom:237.530800pt;}
.ydd{bottom:237.763333pt;}
.y113{bottom:239.370000pt;}
.yb1{bottom:239.370133pt;}
.ye6{bottom:239.467600pt;}
.yd5{bottom:239.510667pt;}
.yd1{bottom:239.743067pt;}
.yf2{bottom:240.509067pt;}
.yee{bottom:240.750133pt;}
.y126{bottom:243.664400pt;}
.y17c{bottom:243.836000pt;}
.ye2{bottom:244.649467pt;}
.ye7{bottom:246.594667pt;}
.yd6{bottom:246.870133pt;}
.yf3{bottom:247.860000pt;}
.y112{bottom:255.370000pt;}
.yb0{bottom:255.370133pt;}
.y125{bottom:258.222000pt;}
.yde{bottom:259.112481pt;}
.y17b{bottom:259.836000pt;}
.ye3{bottom:261.057815pt;}
.yd2{bottom:261.112047pt;}
.y70{bottom:261.394267pt;}
.y73{bottom:261.476267pt;}
.yef{bottom:262.099281pt;}
.y78{bottom:265.156411pt;}
.ye0{bottom:265.987600pt;}
.ye5{bottom:267.924400pt;}
.yd4{bottom:267.967333pt;}
.yf1{bottom:268.974533pt;}
.y75{bottom:269.298400pt;}
.y111{bottom:271.370000pt;}
.yaf{bottom:271.370133pt;}
.y124{bottom:272.779733pt;}
.y17a{bottom:275.836000pt;}
.y79{bottom:276.793218pt;}
.y77{bottom:277.496888pt;}
.ydf{bottom:280.224667pt;}
.y1c{bottom:281.604267pt;}
.ye4{bottom:282.152667pt;}
.yd3{bottom:282.204400pt;}
.yf0{bottom:283.194267pt;}
.y71{bottom:284.090241pt;}
.y123{bottom:287.337467pt;}
.y110{bottom:287.370000pt;}
.yae{bottom:287.370133pt;}
.y7b{bottom:287.677867pt;}
.y144{bottom:289.548267pt;}
.y74{bottom:291.388400pt;}
.y179{bottom:291.836000pt;}
.y81{bottom:293.918209pt;}
.y66{bottom:296.313333pt;}
.y7c{bottom:297.943467pt;}
.y82{bottom:301.435200pt;}
.y122{bottom:301.895200pt;}
.y10f{bottom:303.370000pt;}
.yad{bottom:303.370133pt;}
.y1b{bottom:305.163333pt;}
.y72{bottom:306.513200pt;}
.y178{bottom:307.836000pt;}
.yf4{bottom:310.101600pt;}
.y53{bottom:310.406133pt;}
.y121{bottom:316.452933pt;}
.y10e{bottom:319.370000pt;}
.yac{bottom:319.370133pt;}
.y83{bottom:322.041170pt;}
.ycc{bottom:322.806533pt;}
.yd0{bottom:323.116267pt;}
.yc8{bottom:323.305733pt;}
.yc4{bottom:323.804933pt;}
.y177{bottom:323.836000pt;}
.yc0{bottom:324.037333pt;}
.yfb{bottom:327.223733pt;}
.y101{bottom:327.722933pt;}
.y120{bottom:331.010667pt;}
.y54{bottom:333.081103pt;}
.y10d{bottom:335.370000pt;}
.yab{bottom:335.370133pt;}
.y176{bottom:339.836000pt;}
.y6c{bottom:341.649333pt;}
.y69{bottom:341.913733pt;}
.y11f{bottom:344.344000pt;}
.yc9{bottom:344.396615pt;}
.ycd{bottom:344.697815pt;}
.yc5{bottom:344.895815pt;}
.yc1{bottom:345.386481pt;}
.ycb{bottom:351.271867pt;}
.y10c{bottom:351.370000pt;}
.yaa{bottom:351.370133pt;}
.ycf{bottom:351.555867pt;}
.yc7{bottom:351.762400pt;}
.yc3{bottom:352.261733pt;}
.y55{bottom:355.525067pt;}
.y175{bottom:355.836000pt;}
.y1a{bottom:358.958533pt;}
.y68{bottom:364.341067pt;}
.y6b{bottom:364.598487pt;}
.yca{bottom:365.491600pt;}
.yce{bottom:365.792933pt;}
.yc6{bottom:365.990933pt;}
.yc2{bottom:366.498667pt;}
.y58{bottom:366.839067pt;}
.y10b{bottom:367.370000pt;}
.ya9{bottom:367.370133pt;}
.y11e{bottom:367.592000pt;}
.y174{bottom:371.836000pt;}
.y6a{bottom:373.357600pt;}
.y19{bottom:374.958533pt;}
.y13a{bottom:377.001200pt;}
.y57{bottom:378.373937pt;}
.y67{bottom:379.465733pt;}
.y63{bottom:379.721067pt;}
.y56{bottom:381.514195pt;}
.y10a{bottom:383.370000pt;}
.ya8{bottom:383.370133pt;}
.y11d{bottom:383.592000pt;}
.y13c{bottom:386.246667pt;}
.y6f{bottom:387.288133pt;}
.y6e{bottom:387.290221pt;}
.y173{bottom:387.836000pt;}
.y18{bottom:390.958533pt;}
.y6d{bottom:396.049333pt;}
.y109{bottom:399.370000pt;}
.ya7{bottom:399.370133pt;}
.y64{bottom:402.406539pt;}
.yfe{bottom:403.322000pt;}
.yfd{bottom:403.692133pt;}
.y103{bottom:403.700800pt;}
.y172{bottom:403.836000pt;}
.y17{bottom:406.958533pt;}
.y186{bottom:411.374000pt;}
.yf9{bottom:414.219333pt;}
.yff{bottom:414.718533pt;}
.y108{bottom:415.370000pt;}
.ya6{bottom:415.370133pt;}
.y171{bottom:419.836000pt;}
.y16{bottom:422.958533pt;}
.y107{bottom:431.370000pt;}
.ybc{bottom:431.370133pt;}
.yfa{bottom:435.647809pt;}
.y170{bottom:435.836000pt;}
.y100{bottom:435.901867pt;}
.ya5{bottom:436.031600pt;}
.y102{bottom:437.408267pt;}
.y185{bottom:438.712533pt;}
.y15{bottom:438.958533pt;}
.yfc{bottom:442.538267pt;}
.y4f{bottom:447.370000pt;}
.ybb{bottom:447.370133pt;}
.y16f{bottom:451.836000pt;}
.ya4{bottom:452.031600pt;}
.y14{bottom:454.958533pt;}
.y4e{bottom:463.370000pt;}
.yba{bottom:463.370133pt;}
.y143{bottom:465.548267pt;}
.y16e{bottom:467.836000pt;}
.y13{bottom:470.958533pt;}
.y4d{bottom:479.370000pt;}
.ya3{bottom:479.370133pt;}
.y16d{bottom:483.836000pt;}
.y12{bottom:494.517600pt;}
.y4c{bottom:495.370000pt;}
.ya2{bottom:495.370133pt;}
.y16c{bottom:499.836000pt;}
.y4b{bottom:511.370000pt;}
.ya1{bottom:511.370133pt;}
.y16b{bottom:515.836000pt;}
.y133{bottom:524.053067pt;}
.y4a{bottom:527.370000pt;}
.ya0{bottom:527.370133pt;}
.y16a{bottom:531.836000pt;}
.y51{bottom:534.908133pt;}
.y49{bottom:543.370000pt;}
.y9f{bottom:543.370133pt;}
.y11{bottom:544.533333pt;}
.y169{bottom:547.836000pt;}
.y48{bottom:559.370000pt;}
.y9e{bottom:559.370133pt;}
.y10{bottom:560.533333pt;}
.y50{bottom:562.246667pt;}
.y132{bottom:562.615067pt;}
.y168{bottom:563.836000pt;}
.y47{bottom:575.370000pt;}
.y9d{bottom:575.370133pt;}
.yf{bottom:576.533333pt;}
.y167{bottom:579.836000pt;}
.y46{bottom:591.370000pt;}
.y9c{bottom:591.370133pt;}
.y166{bottom:595.836000pt;}
.y45{bottom:607.370000pt;}
.y9b{bottom:607.370133pt;}
.ye{bottom:607.651467pt;}
.y142{bottom:609.548267pt;}
.y165{bottom:611.836000pt;}
.y44{bottom:623.370000pt;}
.y9a{bottom:623.370133pt;}
.y164{bottom:627.836000pt;}
.y43{bottom:639.370000pt;}
.y99{bottom:639.370133pt;}
.y163{bottom:643.836000pt;}
.yd{bottom:650.108133pt;}
.y106{bottom:652.472400pt;}
.y42{bottom:655.370000pt;}
.y98{bottom:655.370133pt;}
.y162{bottom:659.836000pt;}
.y139{bottom:667.811733pt;}
.y41{bottom:671.370000pt;}
.y97{bottom:671.370133pt;}
.yc{bottom:673.667200pt;}
.y161{bottom:675.836000pt;}
.y40{bottom:687.370000pt;}
.y96{bottom:687.370133pt;}
.y141{bottom:689.548400pt;}
.yb{bottom:689.667200pt;}
.y160{bottom:691.836000pt;}
.y137{bottom:699.551867pt;}
.y3f{bottom:703.370000pt;}
.y95{bottom:703.370133pt;}
.ya{bottom:705.667200pt;}
.y15f{bottom:707.836000pt;}
.y136{bottom:715.551867pt;}
.y3e{bottom:719.370000pt;}
.y94{bottom:719.370133pt;}
.y9{bottom:721.667200pt;}
.y13b{bottom:722.246667pt;}
.y15e{bottom:723.836000pt;}
.y135{bottom:731.551867pt;}
.y3d{bottom:735.370000pt;}
.y93{bottom:735.370133pt;}
.y140{bottom:737.548400pt;}
.y8{bottom:737.667200pt;}
.y15d{bottom:739.836000pt;}
.y3c{bottom:751.370000pt;}
.y92{bottom:751.370133pt;}
.y7{bottom:753.667200pt;}
.y15c{bottom:755.836000pt;}
.y3b{bottom:767.370000pt;}
.y91{bottom:767.370133pt;}
.y6{bottom:769.667200pt;}
.y15b{bottom:771.836000pt;}
.y3a{bottom:783.370000pt;}
.y90{bottom:783.370133pt;}
.y131{bottom:784.227333pt;}
.y15a{bottom:787.836000pt;}
.y5{bottom:793.226267pt;}
.ybe{bottom:796.472400pt;}
.y39{bottom:799.370000pt;}
.yb9{bottom:799.370133pt;}
.y159{bottom:803.836000pt;}
.y4{bottom:812.426400pt;}
.ybd{bottom:812.472400pt;}
.y38{bottom:815.370000pt;}
.yb8{bottom:815.370133pt;}
.y8f{bottom:817.133867pt;}
.y158{bottom:819.836000pt;}
.y37{bottom:831.370000pt;}
.yb7{bottom:831.370133pt;}
.y8e{bottom:833.133867pt;}
.y157{bottom:835.836000pt;}
.y36{bottom:847.370000pt;}
.yb6{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.y156{bottom:851.836000pt;}
.ybf{bottom:860.472400pt;}
.y8d{bottom:860.472533pt;}
.y35{bottom:863.370000pt;}
.yb5{bottom:863.370133pt;}
.y155{bottom:867.836000pt;}
.y34{bottom:879.370000pt;}
.yb4{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y154{bottom:883.836000pt;}
.y33{bottom:895.370000pt;}
.y8c{bottom:895.370133pt;}
.y153{bottom:899.836000pt;}
.y32{bottom:911.370000pt;}
.y8b{bottom:911.370133pt;}
.y1{bottom:914.825067pt;}
.y152{bottom:915.836000pt;}
.y31{bottom:927.370000pt;}
.y8a{bottom:927.370133pt;}
.y151{bottom:931.836000pt;}
.y30{bottom:943.370000pt;}
.y89{bottom:943.370133pt;}
.y13f{bottom:945.548267pt;}
.y150{bottom:947.836000pt;}
.y2f{bottom:959.370000pt;}
.y88{bottom:959.370133pt;}
.y14f{bottom:963.836000pt;}
.y2e{bottom:975.370000pt;}
.y87{bottom:975.370133pt;}
.y14e{bottom:979.836000pt;}
.y2d{bottom:991.370000pt;}
.y86{bottom:991.370133pt;}
.y13e{bottom:993.505333pt;}
.y14d{bottom:995.836000pt;}
.y29{bottom:1001.533333pt;}
.y2c{bottom:1007.370000pt;}
.y85{bottom:1007.370133pt;}
.y14c{bottom:1011.836000pt;}
.y130{bottom:1019.820667pt;}
.y13d{bottom:1020.843867pt;}
.y2b{bottom:1023.370000pt;}
.y84{bottom:1023.370133pt;}
.y14b{bottom:1027.836000pt;}
.y28{bottom:1036.478000pt;}
.y27{bottom:1052.257600pt;}
.y2a{bottom:1060.905467pt;}
.h23{height:22.272000pt;}
.h15{height:22.953876pt;}
.hc{height:24.511200pt;}
.h20{height:28.876477pt;}
.h17{height:28.895844pt;}
.hd{height:29.180000pt;}
.h18{height:29.825444pt;}
.h1d{height:29.859577pt;}
.h1c{height:29.860110pt;}
.h19{height:29.860644pt;}
.h1b{height:29.894777pt;}
.he{height:30.175781pt;}
.h4{height:30.464000pt;}
.h12{height:30.584526pt;}
.hf{height:30.605039pt;}
.h1e{height:30.859677pt;}
.h1a{height:31.064377pt;}
.h5{height:31.125333pt;}
.h1f{height:31.335645pt;}
.h13{height:31.589572pt;}
.h22{height:31.968512pt;}
.h7{height:35.160000pt;}
.h14{height:36.171874pt;}
.h10{height:36.257839pt;}
.h6{height:36.480000pt;}
.h26{height:39.066667pt;}
.h8{height:41.040000pt;}
.h16{height:42.973333pt;}
.h25{height:44.554708pt;}
.hb{height:45.600000pt;}
.h9{height:46.880000pt;}
.h24{height:50.458333pt;}
.ha{height:54.693333pt;}
.h3{height:54.720000pt;}
.h2{height:82.040000pt;}
.h11{height:305.326667pt;}
.h21{height:334.941333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:508.194667pt;}
.w3{width:536.897333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:11.933333pt;}
.x60{left:69.572800pt;}
.x1{left:83.149600pt;}
.x6b{left:85.418000pt;}
.x6c{left:86.373200pt;}
.x68{left:89.735200pt;}
.x2{left:94.488133pt;}
.xe{left:98.267733pt;}
.x6d{left:124.075200pt;}
.x4{left:129.086933pt;}
.x2e{left:131.093733pt;}
.x1b{left:142.753333pt;}
.x28{left:144.158186pt;}
.x61{left:149.341067pt;}
.x26{left:153.291733pt;}
.x27{left:162.044000pt;}
.x2a{left:163.448000pt;}
.x31{left:164.748667pt;}
.x69{left:173.016400pt;}
.x41{left:174.544267pt;}
.x32{left:176.343200pt;}
.x10{left:179.876400pt;}
.x13{left:181.271200pt;}
.x62{left:185.734000pt;}
.x43{left:187.180133pt;}
.x3{left:192.957333pt;}
.x14{left:194.367859pt;}
.x53{left:198.137600pt;}
.x5d{left:202.405333pt;}
.x55{left:204.101067pt;}
.x15{left:207.463733pt;}
.x54{left:210.016968pt;}
.x5{left:213.300667pt;}
.x3f{left:224.124000pt;}
.x2f{left:225.931600pt;}
.x40{left:236.449588pt;}
.x30{left:238.247272pt;}
.x63{left:241.743733pt;}
.x11{left:246.936478pt;}
.x42{left:249.094121pt;}
.xd{left:261.181200pt;}
.x6{left:262.273067pt;}
.x52{left:265.819200pt;}
.x4d{left:269.658267pt;}
.x5e{left:282.182400pt;}
.x12{left:284.336667pt;}
.x4b{left:292.898800pt;}
.x35{left:294.628933pt;}
.x50{left:297.805200pt;}
.x23{left:301.129733pt;}
.x4c{left:304.493333pt;}
.x36{left:306.223333pt;}
.x51{left:309.399600pt;}
.x22{left:313.419333pt;}
.x5f{left:319.599600pt;}
.x6a{left:322.289467pt;}
.x5b{left:331.099333pt;}
.xc{left:333.851067pt;}
.x25{left:339.162863pt;}
.x5c{left:343.464585pt;}
.x58{left:347.684667pt;}
.x4a{left:354.081733pt;}
.x34{left:355.510667pt;}
.x4e{left:358.988000pt;}
.x20{left:366.114400pt;}
.x33{left:368.128788pt;}
.x4f{left:371.313588pt;}
.x7{left:376.198133pt;}
.x21{left:379.211059pt;}
.x24{left:400.424139pt;}
.x9{left:404.849733pt;}
.x48{left:406.545067pt;}
.x1c{left:412.097067pt;}
.x59{left:415.023600pt;}
.xf{left:419.968400pt;}
.x8{left:426.584533pt;}
.x46{left:431.911733pt;}
.x39{left:432.927467pt;}
.x47{left:443.506000pt;}
.x3a{left:444.521867pt;}
.x2b{left:462.424267pt;}
.x5a{left:464.878800pt;}
.x56{left:476.378667pt;}
.x57{left:488.743919pt;}
.x16{left:490.048267pt;}
.x45{left:492.801867pt;}
.x38{left:493.817600pt;}
.x18{left:498.162133pt;}
.x17{left:503.144926pt;}
.x44{left:505.420255pt;}
.x37{left:506.435855pt;}
.x2c{left:518.150709pt;}
.xb{left:534.411200pt;}
.x2d{left:537.437200pt;}
.x49{left:549.336667pt;}
.x19{left:555.169467pt;}
.x65{left:556.326133pt;}
.x66{left:560.750400pt;}
.x1a{left:568.266126pt;}
.x3d{left:574.987467pt;}
.x1d{left:581.653867pt;}
.x3e{left:586.573200pt;}
.x1f{left:594.143867pt;}
.x67{left:601.206267pt;}
.x1e{left:607.554667pt;}
.xa{left:618.252533pt;}
.x64{left:630.047701pt;}
.x3c{left:635.869067pt;}
.x3b{left:648.495855pt;}
}




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