
    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_f64c6146a48273aa69069b64.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_a829ad456b23ba12cd8ff7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_be876ea0557710887d09811c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_d50d882fd94c6c2664c71c7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712891;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_2aaf23aa2c1073a8a8dc5a71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711426;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_5645d91831feade0104ad633.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;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_a546efe6562ea94923eaf122.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_c0099ec9e2e5d57b59c60752.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_a51fe1f0f675487b27d09149.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.094000;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_f4c86baa776c5372c8dd6602.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064000;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_c8e3a4bf2b9cdee7f1f3905c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736816;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_dc00ee87b9cefd930e7e0f02.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_3d29510bbaaa6fac6ed59ec0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_df82aa4d00790f459c81f4c1.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_d9a542320319d06f65baffe0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.869000;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:ff11;src:url('chunks/assets/font_26e0d236ed5d50a165999845.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998000;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:ff12;src:url('chunks/assets/font_5565aba70abb3999c89968d8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.944000;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:ff13;src:url('chunks/assets/font_025cf1ec95a19834276c1e61.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.676000;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:ff14;src:url('chunks/assets/font_56b7f9ec1b72fe58633f6ee4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.734000;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:ff15;src:url('chunks/assets/font_9483b52b07498f0be2a5df7b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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:-17.346000px;}
.v7{vertical-align:-15.648000px;}
.v3{vertical-align:-11.221200px;}
.v1{vertical-align:-5.778000px;}
.v6{vertical-align:-3.060000px;}
.v2{vertical-align:-1.355400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.349501px;}
.lsc{letter-spacing:-1.263600px;}
.ls11{letter-spacing:-1.200600px;}
.ls1a{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.199985px;}
.ls3b{letter-spacing:-0.959988px;}
.ls38{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.239997px;}
.ls12{letter-spacing:-0.239400px;}
.lse{letter-spacing:-0.238497px;}
.lsd{letter-spacing:-0.237600px;}
.ls18{letter-spacing:-0.237598px;}
.ls2c{letter-spacing:-0.214367px;}
.lsf{letter-spacing:-0.212372px;}
.ls1b{letter-spacing:-0.211976px;}
.ls10{letter-spacing:0.000000px;}
.ls16{letter-spacing:2.721566px;}
.ls17{letter-spacing:2.726366px;}
.ls29{letter-spacing:2.934600px;}
.ls5{letter-spacing:4.766340px;}
.ls4{letter-spacing:5.107136px;}
.ls39{letter-spacing:8.610000px;}
.ls3a{letter-spacing:8.616000px;}
.lsa{letter-spacing:9.446282px;}
.ls0{letter-spacing:9.909000px;}
.ls32{letter-spacing:10.257472px;}
.ls26{letter-spacing:10.324671px;}
.ls6{letter-spacing:10.387070px;}
.ls2a{letter-spacing:10.434137px;}
.ls28{letter-spacing:10.435070px;}
.ls27{letter-spacing:10.459069px;}
.ls25{letter-spacing:10.660667px;}
.ls2b{letter-spacing:10.665467px;}
.ls22{letter-spacing:10.939063px;}
.ls24{letter-spacing:11.275059px;}
.ls23{letter-spacing:11.279859px;}
.ls7{letter-spacing:12.431700px;}
.ls37{letter-spacing:12.606000px;}
.ls8{letter-spacing:12.676800px;}
.ls2d{letter-spacing:12.762000px;}
.ls9{letter-spacing:12.773700px;}
.ls1e{letter-spacing:12.822000px;}
.ls36{letter-spacing:12.936000px;}
.ls30{letter-spacing:12.984000px;}
.ls31{letter-spacing:12.996000px;}
.ls33{letter-spacing:13.002000px;}
.ls19{letter-spacing:13.008000px;}
.ls21{letter-spacing:13.164000px;}
.ls2f{letter-spacing:13.182000px;}
.ls35{letter-spacing:13.278000px;}
.ls20{letter-spacing:13.326000px;}
.ls1f{letter-spacing:13.332000px;}
.ls15{letter-spacing:13.350000px;}
.ls1d{letter-spacing:13.416000px;}
.ls34{letter-spacing:13.470600px;}
.ls2e{letter-spacing:13.476600px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.ls3{letter-spacing:21.124536px;}
.ls1c{letter-spacing:1086.696816px;}
.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;}
}
.ws30{word-spacing:-25.247684px;}
.wse6{word-spacing:-20.121271px;}
.wse4{word-spacing:-20.120055px;}
.wsde{word-spacing:-19.781055px;}
.ws132{word-spacing:-16.644000px;}
.wsfd{word-spacing:-16.626000px;}
.ws131{word-spacing:-16.620000px;}
.ws130{word-spacing:-16.464000px;}
.ws75{word-spacing:-16.458000px;}
.wsc5{word-spacing:-16.452000px;}
.wsfe{word-spacing:-16.440000px;}
.ws12d{word-spacing:-16.326000px;}
.ws128{word-spacing:-16.188000px;}
.ws12b{word-spacing:-15.984000px;}
.ws88{word-spacing:-15.348000px;}
.ws8{word-spacing:-15.174000px;}
.ws139{word-spacing:-13.740000px;}
.ws15{word-spacing:-13.487831px;}
.ws111{word-spacing:-13.415832px;}
.ws18{word-spacing:-13.247834px;}
.ws113{word-spacing:-13.075037px;}
.ws178{word-spacing:-12.527843px;}
.ws4e{word-spacing:-11.999850px;}
.ws33{word-spacing:-10.799865px;}
.ws7b{word-spacing:-4.456763px;}
.ws135{word-spacing:-4.233565px;}
.ws133{word-spacing:-4.082366px;}
.ws155{word-spacing:-3.643154px;}
.ws16{word-spacing:-3.551956px;}
.ws17d{word-spacing:-3.542356px;}
.ws18c{word-spacing:-3.537556px;}
.ws154{word-spacing:-3.499156px;}
.ws15c{word-spacing:-3.465557px;}
.ws143{word-spacing:-3.441557px;}
.ws18a{word-spacing:-3.427157px;}
.ws7d{word-spacing:-3.403157px;}
.ws2b{word-spacing:-3.391500px;}
.ws167{word-spacing:-3.388758px;}
.ws16e{word-spacing:-3.374358px;}
.ws1c{word-spacing:-3.351600px;}
.ws166{word-spacing:-3.345558px;}
.ws5{word-spacing:-3.342600px;}
.ws11{word-spacing:-3.340758px;}
.ws14c{word-spacing:-3.335958px;}
.ws152{word-spacing:-3.331158px;}
.wsf{word-spacing:-3.326358px;}
.ws1a{word-spacing:-3.323100px;}
.ws170{word-spacing:-3.321558px;}
.ws24{word-spacing:-3.317400px;}
.ws188{word-spacing:-3.316759px;}
.ws157{word-spacing:-3.311959px;}
.ws145{word-spacing:-3.297559px;}
.ws4{word-spacing:-3.288600px;}
.ws3{word-spacing:-3.283200px;}
.ws158{word-spacing:-3.283159px;}
.wse{word-spacing:-3.278359px;}
.ws18f{word-spacing:-3.273559px;}
.ws26{word-spacing:-3.260400px;}
.ws159{word-spacing:-3.259159px;}
.wsb{word-spacing:-3.256200px;}
.ws19{word-spacing:-3.254700px;}
.ws14b{word-spacing:-3.254359px;}
.ws164{word-spacing:-3.249559px;}
.ws147{word-spacing:-3.244759px;}
.ws16a{word-spacing:-3.239960px;}
.ws13{word-spacing:-3.235160px;}
.ws153{word-spacing:-3.230360px;}
.ws171{word-spacing:-3.225560px;}
.ws15b{word-spacing:-3.220760px;}
.ws2c{word-spacing:-3.220500px;}
.ws165{word-spacing:-3.215960px;}
.ws183{word-spacing:-3.211160px;}
.ws15e{word-spacing:-3.201560px;}
.ws17a{word-spacing:-3.196760px;}
.ws149{word-spacing:-3.191960px;}
.ws25{word-spacing:-3.186300px;}
.ws18e{word-spacing:-3.182360px;}
.ws1b{word-spacing:-3.180600px;}
.ws163{word-spacing:-3.177560px;}
.ws6{word-spacing:-3.175200px;}
.ws168{word-spacing:-3.172760px;}
.ws10{word-spacing:-3.167960px;}
.wsc{word-spacing:-3.159000px;}
.ws191{word-spacing:-3.158361px;}
.ws2a{word-spacing:-3.157800px;}
.ws14e{word-spacing:-3.143961px;}
.ws15d{word-spacing:-3.129561px;}
.ws2d{word-spacing:-3.124761px;}
.ws14d{word-spacing:-3.119961px;}
.wsa{word-spacing:-3.115800px;}
.ws14f{word-spacing:-3.115161px;}
.ws169{word-spacing:-3.110361px;}
.ws173{word-spacing:-3.105561px;}
.ws18d{word-spacing:-3.100761px;}
.ws16d{word-spacing:-3.095961px;}
.ws18b{word-spacing:-3.086361px;}
.ws180{word-spacing:-3.076762px;}
.ws160{word-spacing:-3.062362px;}
.ws20{word-spacing:-3.060900px;}
.ws2{word-spacing:-3.045600px;}
.ws1d{word-spacing:-3.038100px;}
.ws21{word-spacing:-3.021000px;}
.ws156{word-spacing:-3.019162px;}
.ws22{word-spacing:-3.015300px;}
.ws27{word-spacing:-3.009600px;}
.ws9{word-spacing:-3.007800px;}
.ws7{word-spacing:-3.002400px;}
.ws146{word-spacing:-2.990363px;}
.ws12{word-spacing:-2.985563px;}
.ws1e{word-spacing:-2.981100px;}
.ws29{word-spacing:-2.975400px;}
.ws17f{word-spacing:-2.971163px;}
.ws187{word-spacing:-2.966363px;}
.ws14a{word-spacing:-2.956763px;}
.ws2f{word-spacing:-2.951963px;}
.ws1f{word-spacing:-2.941200px;}
.ws189{word-spacing:-2.937563px;}
.ws16f{word-spacing:-2.927963px;}
.ws148{word-spacing:-2.913564px;}
.ws28{word-spacing:-2.912700px;}
.ws150{word-spacing:-2.908764px;}
.ws16c{word-spacing:-2.903964px;}
.ws14{word-spacing:-2.894364px;}
.ws162{word-spacing:-2.889564px;}
.ws186{word-spacing:-2.875164px;}
.ws176{word-spacing:-2.865564px;}
.ws184{word-spacing:-2.860764px;}
.ws161{word-spacing:-2.855964px;}
.ws142{word-spacing:-2.846364px;}
.ws181{word-spacing:-2.831965px;}
.ws17{word-spacing:-2.817565px;}
.ws151{word-spacing:-2.812765px;}
.ws23{word-spacing:-2.810100px;}
.ws15a{word-spacing:-2.807965px;}
.ws16b{word-spacing:-2.779165px;}
.ws17c{word-spacing:-2.774365px;}
.ws17e{word-spacing:-2.769565px;}
.ws172{word-spacing:-2.764765px;}
.wsd{word-spacing:-2.750366px;}
.ws144{word-spacing:-2.745566px;}
.ws1{word-spacing:-2.732400px;}
.ws182{word-spacing:-2.726366px;}
.ws190{word-spacing:-2.716766px;}
.ws185{word-spacing:-2.683166px;}
.ws0{word-spacing:-2.649567px;}
.ws175{word-spacing:-2.198373px;}
.ws174{word-spacing:-2.006375px;}
.ws177{word-spacing:-1.996775px;}
.ws179{word-spacing:-1.924776px;}
.ws10b{word-spacing:-0.993588px;}
.wse1{word-spacing:-0.988788px;}
.ws48{word-spacing:-0.916789px;}
.wsec{word-spacing:-0.911989px;}
.ws41{word-spacing:-0.892789px;}
.ws3d{word-spacing:-0.878389px;}
.wsef{word-spacing:-0.876000px;}
.ws53{word-spacing:-0.873589px;}
.ws83{word-spacing:-0.859189px;}
.wsf7{word-spacing:-0.830390px;}
.wsf1{word-spacing:-0.828000px;}
.ws49{word-spacing:-0.815990px;}
.ws35{word-spacing:-0.796790px;}
.ws3b{word-spacing:-0.791990px;}
.ws109{word-spacing:-0.787190px;}
.ws3a{word-spacing:-0.782390px;}
.ws107{word-spacing:-0.780000px;}
.ws5b{word-spacing:-0.774000px;}
.ws37{word-spacing:-0.767990px;}
.ws55{word-spacing:-0.758391px;}
.ws108{word-spacing:-0.748791px;}
.ws3f{word-spacing:-0.743991px;}
.ws4b{word-spacing:-0.739191px;}
.ws43{word-spacing:-0.729591px;}
.ws45{word-spacing:-0.715191px;}
.ws3c{word-spacing:-0.710391px;}
.ws84{word-spacing:-0.676792px;}
.ws39{word-spacing:-0.671992px;}
.ws54{word-spacing:-0.662392px;}
.ws36{word-spacing:-0.657592px;}
.ws82{word-spacing:-0.652792px;}
.ws4d{word-spacing:-0.643192px;}
.ws81{word-spacing:-0.638392px;}
.ws42{word-spacing:-0.633592px;}
.ws31{word-spacing:-0.623992px;}
.wse8{word-spacing:-0.619192px;}
.ws4a{word-spacing:-0.609592px;}
.wse7{word-spacing:-0.604792px;}
.wse9{word-spacing:-0.585593px;}
.ws38{word-spacing:-0.571193px;}
.ws34{word-spacing:-0.566393px;}
.ws122{word-spacing:-0.564000px;}
.ws93{word-spacing:-0.558000px;}
.ws32{word-spacing:-0.547193px;}
.ws4c{word-spacing:-0.542393px;}
.ws121{word-spacing:-0.540000px;}
.ws124{word-spacing:-0.528000px;}
.ws40{word-spacing:-0.527993px;}
.ws115{word-spacing:-0.523193px;}
.wsf8{word-spacing:-0.518394px;}
.ws8f{word-spacing:-0.516000px;}
.ws119{word-spacing:-0.510000px;}
.ws80{word-spacing:-0.508794px;}
.ws6c{word-spacing:-0.504000px;}
.wsab{word-spacing:-0.503994px;}
.ws3e{word-spacing:-0.499194px;}
.ws123{word-spacing:-0.498000px;}
.ws44{word-spacing:-0.494394px;}
.ws117{word-spacing:-0.489594px;}
.ws51{word-spacing:-0.484794px;}
.ws47{word-spacing:-0.470394px;}
.ws5c{word-spacing:-0.468000px;}
.wse2{word-spacing:-0.465594px;}
.ws52{word-spacing:-0.460794px;}
.ws11a{word-spacing:-0.456000px;}
.ws100{word-spacing:-0.455994px;}
.wse3{word-spacing:-0.450000px;}
.ws76{word-spacing:-0.444000px;}
.ws4f{word-spacing:-0.441594px;}
.ws126{word-spacing:-0.438000px;}
.ws5a{word-spacing:-0.432000px;}
.ws10a{word-spacing:-0.427195px;}
.ws70{word-spacing:-0.426000px;}
.wsbb{word-spacing:-0.420000px;}
.wsf4{word-spacing:-0.417595px;}
.wsc1{word-spacing:-0.414000px;}
.wsf0{word-spacing:-0.408000px;}
.wsc3{word-spacing:-0.402000px;}
.ws105{word-spacing:-0.396000px;}
.wsdc{word-spacing:-0.393595px;}
.wsa2{word-spacing:-0.390000px;}
.wsf9{word-spacing:-0.384000px;}
.wsbc{word-spacing:-0.378000px;}
.wsd3{word-spacing:-0.374395px;}
.ws106{word-spacing:-0.372000px;}
.ws104{word-spacing:-0.369595px;}
.ws63{word-spacing:-0.366000px;}
.ws72{word-spacing:-0.360000px;}
.ws7f{word-spacing:-0.359995px;}
.ws8b{word-spacing:-0.354000px;}
.ws60{word-spacing:-0.348000px;}
.ws9c{word-spacing:-0.342000px;}
.ws116{word-spacing:-0.340796px;}
.ws6e{word-spacing:-0.336000px;}
.ws46{word-spacing:-0.335996px;}
.wseb{word-spacing:-0.334963px;}
.wsf6{word-spacing:-0.331196px;}
.wsb7{word-spacing:-0.330000px;}
.wse5{word-spacing:-0.328963px;}
.wsb6{word-spacing:-0.324000px;}
.wsc4{word-spacing:-0.318000px;}
.wsc0{word-spacing:-0.312000px;}
.wsbd{word-spacing:-0.306000px;}
.ws95{word-spacing:-0.300000px;}
.wsdf{word-spacing:-0.297596px;}
.ws6f{word-spacing:-0.294000px;}
.wsdd{word-spacing:-0.292796px;}
.ws5d{word-spacing:-0.288000px;}
.ws50{word-spacing:-0.287996px;}
.wsaa{word-spacing:-0.283196px;}
.ws61{word-spacing:-0.282000px;}
.wsa6{word-spacing:-0.278397px;}
.ws57{word-spacing:-0.276000px;}
.ws11c{word-spacing:-0.270000px;}
.ws11e{word-spacing:-0.264000px;}
.ws7e{word-spacing:-0.263997px;}
.ws65{word-spacing:-0.258000px;}
.wsb9{word-spacing:-0.252000px;}
.ws91{word-spacing:-0.246000px;}
.ws11b{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.234000px;}
.ws8d{word-spacing:-0.228000px;}
.ws99{word-spacing:-0.222000px;}
.wsa9{word-spacing:-0.220797px;}
.ws58{word-spacing:-0.216000px;}
.ws6a{word-spacing:-0.210000px;}
.ws9e{word-spacing:-0.204000px;}
.ws8c{word-spacing:-0.198000px;}
.ws5f{word-spacing:-0.192000px;}
.wsf5{word-spacing:-0.191998px;}
.ws67{word-spacing:-0.186000px;}
.ws71{word-spacing:-0.180000px;}
.ws114{word-spacing:-0.177598px;}
.ws77{word-spacing:-0.174000px;}
.wsd6{word-spacing:-0.169404px;}
.ws11d{word-spacing:-0.168000px;}
.wsd2{word-spacing:-0.167998px;}
.wsda{word-spacing:-0.167289px;}
.wsc8{word-spacing:-0.163198px;}
.ws7a{word-spacing:-0.162000px;}
.ws103{word-spacing:-0.158398px;}
.ws118{word-spacing:-0.156000px;}
.wse0{word-spacing:-0.153598px;}
.ws64{word-spacing:-0.150000px;}
.ws11f{word-spacing:-0.144000px;}
.wsd0{word-spacing:-0.139198px;}
.wsa0{word-spacing:-0.138000px;}
.wsd8{word-spacing:-0.135243px;}
.wsc7{word-spacing:-0.132000px;}
.ws97{word-spacing:-0.120000px;}
.ws120{word-spacing:-0.108000px;}
.ws79{word-spacing:-0.102000px;}
.ws73{word-spacing:-0.096000px;}
.wsea{word-spacing:-0.095999px;}
.wsb4{word-spacing:-0.091199px;}
.ws6b{word-spacing:-0.090000px;}
.wsf2{word-spacing:-0.084000px;}
.ws5e{word-spacing:-0.078000px;}
.wsca{word-spacing:-0.076799px;}
.wsbf{word-spacing:-0.072000px;}
.wsc2{word-spacing:-0.066000px;}
.ws101{word-spacing:-0.062399px;}
.ws62{word-spacing:-0.054000px;}
.wsed{word-spacing:-0.048000px;}
.ws98{word-spacing:-0.042000px;}
.ws10f{word-spacing:-0.038400px;}
.ws59{word-spacing:-0.036000px;}
.wsa4{word-spacing:-0.033600px;}
.ws69{word-spacing:-0.030000px;}
.wsce{word-spacing:-0.028800px;}
.ws78{word-spacing:-0.024000px;}
.wsb0{word-spacing:-0.019200px;}
.ws13e{word-spacing:-0.018000px;}
.ws8e{word-spacing:-0.012000px;}
.ws56{word-spacing:0.000000px;}
.wsc9{word-spacing:0.024000px;}
.wsfa{word-spacing:0.030000px;}
.ws102{word-spacing:0.033600px;}
.ws74{word-spacing:0.036000px;}
.wscc{word-spacing:0.047999px;}
.wsa3{word-spacing:0.054000px;}
.wsa1{word-spacing:0.060000px;}
.wsd1{word-spacing:0.062399px;}
.wsff{word-spacing:0.076799px;}
.ws13c{word-spacing:0.078000px;}
.ws112{word-spacing:0.091199px;}
.ws9b{word-spacing:0.096000px;}
.ws66{word-spacing:0.102000px;}
.wsee{word-spacing:0.108000px;}
.wsb1{word-spacing:0.110399px;}
.ws9f{word-spacing:0.114000px;}
.wsb8{word-spacing:0.126000px;}
.ws68{word-spacing:0.132000px;}
.ws12c{word-spacing:0.138000px;}
.wscf{word-spacing:0.167998px;}
.ws96{word-spacing:0.172799px;}
.wsd4{word-spacing:0.175219px;}
.ws94{word-spacing:0.186000px;}
.ws10d{word-spacing:0.187198px;}
.ws129{word-spacing:0.192000px;}
.ws7c{word-spacing:0.194398px;}
.ws125{word-spacing:0.210000px;}
.ws10e{word-spacing:0.211197px;}
.wsc6{word-spacing:0.216000px;}
.ws12a{word-spacing:0.228000px;}
.wsfb{word-spacing:0.240000px;}
.ws12e{word-spacing:0.246000px;}
.wsa5{word-spacing:0.249597px;}
.ws110{word-spacing:0.263997px;}
.wsbe{word-spacing:0.273598px;}
.ws12f{word-spacing:0.276000px;}
.wscb{word-spacing:0.297596px;}
.ws9a{word-spacing:0.312000px;}
.ws9d{word-spacing:0.316797px;}
.ws127{word-spacing:0.324000px;}
.ws13a{word-spacing:0.330000px;}
.wsba{word-spacing:0.331197px;}
.ws10c{word-spacing:0.335996px;}
.ws140{word-spacing:0.342000px;}
.ws92{word-spacing:0.352797px;}
.wsfc{word-spacing:0.367197px;}
.wsf3{word-spacing:0.374395px;}
.wsb5{word-spacing:0.390000px;}
.ws90{word-spacing:0.410397px;}
.ws134{word-spacing:0.432000px;}
.ws85{word-spacing:0.504000px;}
.wscd{word-spacing:0.537593px;}
.ws89{word-spacing:0.624000px;}
.ws137{word-spacing:0.666000px;}
.ws13b{word-spacing:0.708000px;}
.ws87{word-spacing:0.732000px;}
.ws138{word-spacing:0.762000px;}
.ws86{word-spacing:0.774000px;}
.ws13d{word-spacing:0.846000px;}
.ws8a{word-spacing:0.978000px;}
.ws13f{word-spacing:1.026000px;}
.ws136{word-spacing:1.158000px;}
.ws2e{word-spacing:34.588368px;}
.ws15f{word-spacing:46.842614px;}
.ws17b{word-spacing:46.847414px;}
.ws141{word-spacing:46.909814px;}
.wsaf{word-spacing:98.043574px;}
.wsa7{word-spacing:98.149173px;}
.wsa8{word-spacing:98.168373px;}
.wsad{word-spacing:120.132898px;}
.wsd9{word-spacing:152.679945px;}
.wsae{word-spacing:155.806052px;}
.wsac{word-spacing:158.575618px;}
.wsdb{word-spacing:183.975945px;}
.wsd7{word-spacing:225.813945px;}
.wsd5{word-spacing:277.179945px;}
.wsb3{word-spacing:281.430082px;}
.wsb2{word-spacing:370.963363px;}
._8{margin-left:-3.739153px;}
._0{margin-left:-1.113586px;}
._6{width:1.385100px;}
._31{width:2.573018px;}
._2{width:3.621600px;}
._3{width:9.119886px;}
._4{width:10.967863px;}
._a{width:12.336000px;}
._5{width:13.588800px;}
._9{width:14.679600px;}
._b{width:16.747060px;}
._c{width:21.033337px;}
._1{width:24.904800px;}
._33{width:26.423670px;}
._16{width:112.496194px;}
._29{width:122.960063px;}
._10{width:124.222447px;}
._17{width:151.692504px;}
._f{width:170.786665px;}
._11{width:177.991375px;}
._28{width:180.002550px;}
._30{width:216.189298px;}
._2c{width:222.419620px;}
._2e{width:226.821165px;}
._2d{width:228.755541px;}
._e{width:234.683466px;}
._2f{width:252.534443px;}
._18{width:276.774140px;}
._2a{width:287.574005px;}
._21{width:306.293771px;}
._1f{width:313.637679px;}
._24{width:321.173585px;}
._22{width:330.106274px;}
._1d{width:336.648592px;}
._27{width:340.392545px;}
._26{width:349.325233px;}
._15{width:379.214460px;}
._2b{width:392.678291px;}
._20{width:395.668654px;}
._14{width:400.228597px;}
._12{width:402.340571px;}
._1e{width:415.170810px;}
._23{width:422.706716px;}
._25{width:443.730453px;}
._1c{width:466.458169px;}
._1a{width:485.773128px;}
._1b{width:549.079536px;}
._19{width:614.973113px;}
._d{width:791.260509px;}
._13{width:885.694529px;}
._32{width:1481.592680px;}
._7{width:1507.013162px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.995000px;}
.fsb{font-size:33.598800px;}
.fs4{font-size:35.995200px;}
.fs9{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:54.000000px;}
.y120{bottom:103.068019px;}
.y14c{bottom:119.651090px;}
.y139{bottom:124.498500px;}
.y81{bottom:124.498650px;}
.y10c{bottom:124.498838px;}
.ye6{bottom:124.499463px;}
.y1a5{bottom:124.499813px;}
.y53{bottom:124.500064px;}
.y11f{bottom:126.284129px;}
.y10e{bottom:132.832229px;}
.y152{bottom:136.663500px;}
.y128{bottom:138.105000px;}
.y1de{bottom:138.363759px;}
.y1a4{bottom:138.786834px;}
.y11e{bottom:140.570878px;}
.y52{bottom:140.997458px;}
.y14b{bottom:142.866356px;}
.y80{bottom:143.971650px;}
.y138{bottom:143.973000px;}
.ye5{bottom:147.035181px;}
.y10d{bottom:147.118050px;}
.y1dd{bottom:152.565582px;}
.y1a3{bottom:152.987457px;}
.y11d{bottom:154.771500px;}
.y11b{bottom:154.771856px;}
.y10b{bottom:155.877000px;}
.y151{bottom:156.138000px;}
.y14a{bottom:157.153378px;}
.y51{bottom:157.494852px;}
.y127{bottom:157.579500px;}
.y11c{bottom:160.129500px;}
.y137{bottom:163.531500px;}
.ye4{bottom:165.742947px;}
.y1dc{bottom:166.851403px;}
.y11a{bottom:169.058878px;}
.ybb{bottom:169.483500px;}
.y10a{bottom:169.484152px;}
.y7f{bottom:169.484325px;}
.y149{bottom:171.354000px;}
.y1e5{bottom:172.124137px;}
.y1a2{bottom:172.462014px;}
.y50{bottom:173.993445px;}
.y150{bottom:175.612500px;}
.y126{bottom:177.052500px;}
.y136{bottom:183.004500px;}
.y119{bottom:183.259500px;}
.ye3{bottom:184.537112px;}
.y1db{bottom:186.325960px;}
.y1a1{bottom:186.749035px;}
.y4f{bottom:190.490839px;}
.y14f{bottom:195.085500px;}
.y7e{bottom:196.525500px;}
.y125{bottom:196.612500px;}
.y109{bottom:197.631625px;}
.y1da{bottom:200.611781px;}
.ye2{bottom:203.244879px;}
.y1a0{bottom:206.222392px;}
.y4e{bottom:206.988233px;}
.y135{bottom:208.516500px;}
.y2f{bottom:210.645150px;}
.yba{bottom:212.430000px;}
.y14e{bottom:214.644000px;}
.y1d9{bottom:214.813603px;}
.y124{bottom:216.085500px;}
.y108{bottom:216.340591px;}
.y1e4{bottom:220.086338px;}
.y19f{bottom:220.509413px;}
.y179{bottom:222.639000px;}
.y4c{bottom:223.485627px;}
.y4d{bottom:223.741223px;}
.ye1{bottom:225.525000px;}
.y2e{bottom:231.649650px;}
.yb9{bottom:231.904500px;}
.y14d{bottom:234.118500px;}
.y1d8{bottom:234.373359px;}
.y19e{bottom:234.710035px;}
.y107{bottom:235.134756px;}
.y123{bottom:235.560000px;}
.y4b{bottom:239.983020px;}
.y178{bottom:242.112000px;}
.y1d7{bottom:248.573981px;}
.y134{bottom:249.166500px;}
.y106{bottom:249.420577px;}
.yb8{bottom:251.379000px;}
.y2d{bottom:252.654150px;}
.y7d{bottom:253.593000px;}
.y19d{bottom:254.269791px;}
.y122{bottom:255.033000px;}
.yd4{bottom:260.392500px;}
.y177{bottom:261.586500px;}
.y1d6{bottom:262.861003px;}
.y4a{bottom:265.494701px;}
.y19c{bottom:268.470413px;}
.y133{bottom:268.725000px;}
.yb7{bottom:270.937500px;}
.y105{bottom:271.615500px;}
.y7c{bottom:273.151500px;}
.y2c{bottom:273.658650px;}
.yd3{bottom:279.951000px;}
.y121{bottom:280.545000px;}
.y176{bottom:281.145000px;}
.y49{bottom:281.992095px;}
.y1d5{bottom:282.334359px;}
.y19b{bottom:282.757435px;}
.y132{bottom:288.199500px;}
.yb6{bottom:290.412000px;}
.y7b{bottom:292.626000px;}
.y2b{bottom:294.663150px;}
.y1d4{bottom:296.621381px;}
.y48{bottom:298.489489px;}
.yd2{bottom:299.425500px;}
.y175{bottom:300.619500px;}
.y19a{bottom:302.231991px;}
.y104{bottom:306.567000px;}
.y131{bottom:307.674000px;}
.yb5{bottom:309.885000px;}
.y1d3{bottom:310.823203px;}
.y7a{bottom:312.099000px;}
.y12e{bottom:314.561569px;}
.y2a{bottom:315.667650px;}
.y199{bottom:316.517813px;}
.yd1{bottom:318.900000px;}
.y174{bottom:320.094000px;}
.y47{bottom:324.001170px;}
.y1d2{bottom:325.109025px;}
.y103{bottom:326.041500px;}
.y130{bottom:327.232500px;}
.yb4{bottom:329.443500px;}
.y198{bottom:330.719635px;}
.y79{bottom:331.657500px;}
.y29{bottom:336.672150px;}
.y12d{bottom:337.862878px;}
.yd0{bottom:338.458500px;}
.y173{bottom:339.567000px;}
.y46{bottom:340.499764px;}
.y1d1{bottom:344.583581px;}
.y102{bottom:345.514500px;}
.y100{bottom:345.516000px;}
.y12f{bottom:346.705500px;}
.yb3{bottom:348.918000px;}
.y197{bottom:350.278191px;}
.y78{bottom:351.132000px;}
.y12c{bottom:352.064035px;}
.y101{bottom:352.233000px;}
.y45{bottom:356.997158px;}
.y28{bottom:357.678075px;}
.ycf{bottom:357.931500px;}
.y1d0{bottom:358.869403px;}
.y172{bottom:359.125500px;}
.y196{bottom:364.480013px;}
.yff{bottom:365.076000px;}
.y12b{bottom:366.349856px;}
.yb2{bottom:368.392500px;}
.y77{bottom:370.606500px;}
.y1cf{bottom:373.071225px;}
.y44{bottom:373.494551px;}
.yce{bottom:377.406000px;}
.y171{bottom:378.600000px;}
.y13d{bottom:378.680747px;}
.y27{bottom:378.682575px;}
.y195{bottom:378.767035px;}
.y12a{bottom:380.551679px;}
.yfe{bottom:384.549000px;}
.y1e3{bottom:387.358247px;}
.yb1{bottom:387.865500px;}
.y43{bottom:389.991945px;}
.y76{bottom:390.165000px;}
.y1ce{bottom:392.545782px;}
.y194{bottom:392.967657px;}
.y129{bottom:394.837500px;}
.ycd{bottom:396.880500px;}
.y170{bottom:398.074500px;}
.y26{bottom:399.687075px;}
.y13c{bottom:401.980856px;}
.yfd{bottom:404.023500px;}
.yb0{bottom:404.872500px;}
.y42{bottom:406.489339px;}
.y1cd{bottom:406.831603px;}
.y193{bottom:407.254679px;}
.yaf{bottom:407.424000px;}
.y75{bottom:409.639500px;}
.y13b{bottom:416.182679px;}
.ycc{bottom:416.439000px;}
.y16f{bottom:417.633000px;}
.y25{bottom:420.691575px;}
.y1cc{bottom:421.118625px;}
.y192{bottom:421.540500px;}
.yfc{bottom:423.582000px;}
.yae{bottom:426.897000px;}
.y74{bottom:429.112500px;}
.y13a{bottom:430.468500px;}
.y41{bottom:432.001020px;}
.y1e2{bottom:435.320447px;}
.ycb{bottom:435.913500px;}
.y16e{bottom:437.107500px;}
.y1cb{bottom:440.591981px;}
.y24{bottom:441.696075px;}
.y191{bottom:441.780000px;}
.yfb{bottom:443.056500px;}
.y73{bottom:448.587000px;}
.yad{bottom:452.409000px;}
.y1ca{bottom:454.793804px;}
.yca{bottom:455.386500px;}
.y16d{bottom:456.580500px;}
.y40{bottom:457.512701px;}
.yfa{bottom:462.529500px;}
.y23{bottom:462.700575px;}
.y72{bottom:468.145500px;}
.y1c9{bottom:469.080825px;}
.yc9{bottom:474.945000px;}
.y16c{bottom:476.139000px;}
.yf9{bottom:482.004000px;}
.y3f{bottom:483.024382px;}
.y1c8{bottom:483.366646px;}
.y22{bottom:483.621000px;}
.y71{bottom:487.620000px;}
.yc8{bottom:494.419500px;}
.yac{bottom:495.271500px;}
.y16b{bottom:495.613500px;}
.y190{bottom:496.206000px;}
.y1c7{bottom:497.568469px;}
.yf8{bottom:501.562500px;}
.y21{bottom:504.625500px;}
.y70{bottom:507.093000px;}
.y3e{bottom:508.536063px;}
.yc7{bottom:513.894000px;}
.yab{bottom:514.830000px;}
.y16a{bottom:515.088000px;}
.y18f{bottom:515.680500px;}
.y1c6{bottom:517.041826px;}
.yf7{bottom:521.037000px;}
.y3d{bottom:525.033457px;}
.y20{bottom:525.630000px;}
.y6f{bottom:526.651500px;}
.y1c5{bottom:531.328847px;}
.yc6{bottom:533.452500px;}
.yaa{bottom:534.303000px;}
.y169{bottom:534.646500px;}
.yf6{bottom:540.510000px;}
.y18e{bottom:542.722500px;}
.y1c4{bottom:545.615868px;}
.y6e{bottom:546.126000px;}
.y1f{bottom:546.634500px;}
.y3c{bottom:550.545138px;}
.yc5{bottom:552.925500px;}
.ya9{bottom:553.777500px;}
.y168{bottom:554.119500px;}
.y1c3{bottom:565.089225px;}
.y6d{bottom:565.600500px;}
.yf5{bottom:566.022000px;}
.y3b{bottom:567.042532px;}
.y1e{bottom:567.639000px;}
.y18d{bottom:569.680500px;}
.ya8{bottom:573.336000px;}
.y167{bottom:573.594000px;}
.yc4{bottom:578.437500px;}
.y1c2{bottom:579.291047px;}
.y3a{bottom:583.541126px;}
.y6c{bottom:585.159000px;}
.y1d{bottom:588.643500px;}
.ya7{bottom:592.810500px;}
.y166{bottom:593.068500px;}
.y1c1{bottom:593.576869px;}
.y18a{bottom:596.722500px;}
.y18b{bottom:597.487500px;}
.y39{bottom:600.038520px;}
.y18c{bottom:600.634500px;}
.y6b{bottom:604.633500px;}
.y1c0{bottom:607.863890px;}
.yf4{bottom:608.287500px;}
.y1c{bottom:609.648000px;}
.ya6{bottom:612.283500px;}
.y165{bottom:612.627000px;}
.y38{bottom:616.535913px;}
.yc3{bottom:622.149000px;}
.y189{bottom:623.679000px;}
.y6a{bottom:624.106500px;}
.y1bf{bottom:627.338447px;}
.yf3{bottom:627.846000px;}
.y1b{bottom:630.652500px;}
.y164{bottom:632.101500px;}
.y37{bottom:633.033307px;}
.ya5{bottom:637.795500px;}
.y1be{bottom:641.539069px;}
.yc2{bottom:641.709000px;}
.y69{bottom:643.665000px;}
.yf2{bottom:647.320500px;}
.y186{bottom:650.722500px;}
.y187{bottom:651.487500px;}
.y163{bottom:651.574500px;}
.y1a{bottom:651.657000px;}
.y188{bottom:654.634500px;}
.y1bd{bottom:655.826091px;}
.y36{bottom:657.609000px;}
.yc1{bottom:661.182000px;}
.y68{bottom:663.139500px;}
.yf1{bottom:666.793500px;}
.y1bc{bottom:670.111912px;}
.y185{bottom:670.195500px;}
.y162{bottom:671.133000px;}
.y19{bottom:672.661500px;}
.yc0{bottom:680.656500px;}
.ya4{bottom:680.740500px;}
.y67{bottom:682.614000px;}
.yf0{bottom:686.352000px;}
.y1bb{bottom:689.586469px;}
.y161{bottom:690.607500px;}
.y184{bottom:697.239000px;}
.ya3{bottom:700.215000px;}
.y66{bottom:702.087000px;}
.y1ba{bottom:703.873490px;}
.y18{bottom:705.657000px;}
.y160{bottom:710.082000px;}
.yef{bottom:711.780825px;}
.y181{bottom:716.712000px;}
.y182{bottom:717.477000px;}
.y1b9{bottom:718.074113px;}
.ya2{bottom:719.689500px;}
.y183{bottom:720.624000px;}
.y65{bottom:721.647000px;}
.y15f{bottom:729.640500px;}
.y1b8{bottom:732.361134px;}
.yee{bottom:738.822000px;}
.ya1{bottom:739.162500px;}
.y64{bottom:741.120000px;}
.y180{bottom:743.670000px;}
.y35{bottom:744.520500px;}
.y15e{bottom:749.115000px;}
.y1b7{bottom:751.834491px;}
.ya0{bottom:758.721000px;}
.ybf{bottom:758.722500px;}
.y9e{bottom:758.724000px;}
.y63{bottom:760.594500px;}
.y34{bottom:761.782500px;}
.y17f{bottom:763.228500px;}
.y9f{bottom:765.354000px;}
.y17{bottom:765.950813px;}
.y1b6{bottom:766.121512px;}
.y15d{bottom:768.588000px;}
.ybe{bottom:778.195500px;}
.y9d{bottom:778.197000px;}
.y33{bottom:778.960500px;}
.y62{bottom:780.153000px;}
.y1b5{bottom:780.323334px;}
.yed{bottom:781.087500px;}
.y15c{bottom:788.062500px;}
.y17e{bottom:790.185000px;}
.y1b4{bottom:794.609156px;}
.y16{bottom:795.969638px;}
.y32{bottom:796.224000px;}
.ybd{bottom:797.670000px;}
.y9c{bottom:797.671500px;}
.y61{bottom:799.627500px;}
.y1e1{bottom:799.796691px;}
.yec{bottom:800.562000px;}
.y15b{bottom:807.621000px;}
.y14{bottom:810.937050px;}
.y15{bottom:811.361845px;}
.y31{bottom:813.486000px;}
.y1b3{bottom:814.083712px;}
.y17d{bottom:815.697000px;}
.ybc{bottom:817.143000px;}
.y9b{bottom:817.230000px;}
.y60{bottom:819.100500px;}
.yeb{bottom:820.120500px;}
.y12{bottom:825.988462px;}
.y13{bottom:826.244059px;}
.y15a{bottom:827.095500px;}
.y1b2{bottom:828.369534px;}
.y9a{bottom:836.704500px;}
.y5f{bottom:838.659000px;}
.yea{bottom:839.593500px;}
.y10{bottom:840.955875px;}
.y11{bottom:841.295471px;}
.y1b1{bottom:842.571356px;}
.y141{bottom:845.973000px;}
.y159{bottom:846.568500px;}
.y1e0{bottom:847.844090px;}
.y115{bottom:850.735500px;}
.ye{bottom:855.922088px;}
.y99{bottom:856.177500px;}
.yf{bottom:856.346883px;}
.y5e{bottom:858.133500px;}
.y1b0{bottom:862.045913px;}
.ye9{bottom:865.105500px;}
.y140{bottom:865.531500px;}
.y158{bottom:866.127000px;}
.ye0{bottom:868.339256px;}
.y114{bottom:870.294000px;}
.yd{bottom:870.973500px;}
.y17c{bottom:871.654500px;}
.y98{bottom:873.184500px;}
.y97{bottom:875.736000px;}
.y1af{bottom:876.331734px;}
.y5d{bottom:877.608000px;}
.y13f{bottom:885.006000px;}
.y157{bottom:885.601500px;}
.y113{bottom:889.768500px;}
.y1ae{bottom:890.618756px;}
.ydf{bottom:890.874974px;}
.y17b{bottom:891.127500px;}
.y96{bottom:895.210500px;}
.y1df{bottom:895.806291px;}
.y5c{bottom:897.081000px;}
.yc{bottom:897.930000px;}
.ya{bottom:897.931500px;}
.yb{bottom:903.969000px;}
.y13e{bottom:904.479000px;}
.y156{bottom:905.076000px;}
.y8e{bottom:905.584969px;}
.ye8{bottom:907.369500px;}
.y112{bottom:909.243000px;}
.yde{bottom:909.582740px;}
.y1ad{bottom:910.092112px;}
.y6{bottom:914.428500px;}
.y95{bottom:914.683500px;}
.y8{bottom:914.767350px;}
.y17a{bottom:916.639500px;}
.y5b{bottom:916.641000px;}
.y9{bottom:917.233800px;}
.y7{bottom:920.466000px;}
.y8d{bottom:922.083562px;}
.y1ac{bottom:924.293935px;}
.y155{bottom:924.634500px;}
.ydd{bottom:928.376905px;}
.y111{bottom:928.801500px;}
.y4{bottom:930.925500px;}
.ye7{bottom:932.881500px;}
.y5a{bottom:936.114000px;}
.y5{bottom:936.964500px;}
.y1ab{bottom:938.580956px;}
.y148{bottom:940.110946px;}
.y94{bottom:940.195500px;}
.y154{bottom:944.109000px;}
.ydc{bottom:947.084671px;}
.y8c{bottom:947.595244px;}
.y110{bottom:948.274500px;}
.y1aa{bottom:952.866778px;}
.y59{bottom:955.588500px;}
.y147{bottom:963.325856px;}
.y153{bottom:963.582000px;}
.y8b{bottom:964.092637px;}
.ydb{bottom:965.793638px;}
.y3{bottom:968.430900px;}
.y1a9{bottom:972.341334px;}
.y10f{bottom:973.786500px;}
.y58{bottom:975.147000px;}
.y146{bottom:977.612878px;}
.y8a{bottom:980.590031px;}
.y93{bottom:983.140500px;}
.yda{bottom:984.587803px;}
.y1a8{bottom:986.541957px;}
.y145{bottom:991.814691px;}
.y57{bottom:994.621500px;}
.y88{bottom:997.087425px;}
.y89{bottom:997.427021px;}
.y1a7{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y92{bottom:1002.615000px;}
.yd9{bottom:1003.295569px;}
.y144{bottom:1006.101712px;}
.y118{bottom:1011.289069px;}
.y87{bottom:1013.584819px;}
.y56{bottom:1014.094500px;}
.y1a6{bottom:1015.116000px;}
.y143{bottom:1020.303535px;}
.y91{bottom:1022.089500px;}
.yd8{bottom:1022.089734px;}
.y85{bottom:1030.082212px;}
.y86{bottom:1030.423008px;}
.y55{bottom:1033.653000px;}
.y142{bottom:1034.589356px;}
.y117{bottom:1034.590378px;}
.y1{bottom:1035.949500px;}
.yd5{bottom:1040.796879px;}
.yd7{bottom:1040.797500px;}
.y90{bottom:1041.562500px;}
.yd6{bottom:1046.154000px;}
.y84{bottom:1046.579606px;}
.y116{bottom:1048.791179px;}
.y54{bottom:1059.079500px;}
.y8f{bottom:1061.121000px;}
.y83{bottom:1063.077000px;}
.y82{bottom:1118.692500px;}
.h11{height:23.996250px;}
.h13{height:26.039070px;}
.h4{height:27.932275px;}
.hf{height:29.996550px;}
.ha{height:34.968313px;}
.h10{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h3{height:41.904000px;}
.h16{height:43.382931px;}
.h15{height:43.383760px;}
.h18{height:43.386046px;}
.h17{height:43.386307px;}
.h12{height:43.388571px;}
.h14{height:43.726356px;}
.h8{height:44.175000px;}
.h9{height:45.000000px;}
.he{height:53.999550px;}
.hd{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:54.000000px;}
.x1e{left:71.433000px;}
.x2f{left:83.763228px;}
.x22{left:89.545956px;}
.x32{left:117.694004px;}
.x3d{left:129.940050px;}
.x1f{left:150.348814px;}
.x3b{left:158.002500px;}
.x23{left:190.656692px;}
.x2c{left:217.358758px;}
.x3c{left:254.863500px;}
.x39{left:262.431000px;}
.x38{left:277.569000px;}
.x1{left:300.018000px;}
.x44{left:307.332000px;}
.x20{left:317.961000px;}
.x45{left:332.247289px;}
.x8{left:350.362500px;}
.x9{left:372.642000px;}
.x33{left:395.940526px;}
.x13{left:406.659000px;}
.x24{left:412.780500px;}
.x25{left:418.138500px;}
.x14{left:428.853000px;}
.x1a{left:432.423145px;}
.x2{left:443.481000px;}
.x3{left:465.675000px;}
.x34{left:474.857539px;}
.x41{left:478.768500px;}
.x42{left:495.691500px;}
.x28{left:497.055000px;}
.x29{left:502.413000px;}
.xa{left:511.681500px;}
.x15{left:523.332000px;}
.xb{left:533.877000px;}
.x3e{left:541.867500px;}
.x16{left:545.527500px;}
.x2a{left:550.630500px;}
.x4{left:554.031000px;}
.x2b{left:559.219500px;}
.x43{left:573.076500px;}
.x5{left:576.226500px;}
.x35{left:593.062062px;}
.x3f{left:609.133500px;}
.xc{left:624.613500px;}
.xd{left:630.141000px;}
.x30{left:633.628500px;}
.x3a{left:636.094500px;}
.x21{left:639.835500px;}
.x31{left:642.897000px;}
.x1c{left:649.697229px;}
.xe{left:660.159600px;}
.x36{left:671.297484px;}
.xf{left:677.251950px;}
.x6{left:680.569500px;}
.x37{left:685.243709px;}
.x40{left:686.518500px;}
.x7{left:702.850500px;}
.x17{left:724.620000px;}
.x18{left:746.815500px;}
.x10{left:757.359600px;}
.x2d{left:765.354000px;}
.x26{left:767.224500px;}
.x11{left:769.692000px;}
.x27{left:782.362500px;}
.x12{left:783.553500px;}
.x1b{left:797.835377px;}
.x2e{left:800.985000px;}
.x19{left:832.871339px;}
@media print{
.v5{vertical-align:-15.418667pt;}
.v7{vertical-align:-13.909333pt;}
.v3{vertical-align:-9.974400pt;}
.v1{vertical-align:-5.136000pt;}
.v6{vertical-align:-2.720000pt;}
.v2{vertical-align:-1.204800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.421778pt;}
.lsc{letter-spacing:-1.123200pt;}
.ls11{letter-spacing:-1.067200pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-1.066653pt;}
.ls3b{letter-spacing:-0.853323pt;}
.ls38{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.213331pt;}
.ls12{letter-spacing:-0.212800pt;}
.lse{letter-spacing:-0.211997pt;}
.lsd{letter-spacing:-0.211200pt;}
.ls18{letter-spacing:-0.211198pt;}
.ls2c{letter-spacing:-0.190548pt;}
.lsf{letter-spacing:-0.188775pt;}
.ls1b{letter-spacing:-0.188423pt;}
.ls10{letter-spacing:0.000000pt;}
.ls16{letter-spacing:2.419170pt;}
.ls17{letter-spacing:2.423436pt;}
.ls29{letter-spacing:2.608533pt;}
.ls5{letter-spacing:4.236747pt;}
.ls4{letter-spacing:4.539677pt;}
.ls39{letter-spacing:7.653333pt;}
.ls3a{letter-spacing:7.658667pt;}
.lsa{letter-spacing:8.396695pt;}
.ls0{letter-spacing:8.808000pt;}
.ls32{letter-spacing:9.117753pt;}
.ls26{letter-spacing:9.177485pt;}
.ls6{letter-spacing:9.232951pt;}
.ls2a{letter-spacing:9.274789pt;}
.ls28{letter-spacing:9.275617pt;}
.ls27{letter-spacing:9.296950pt;}
.ls25{letter-spacing:9.476148pt;}
.ls2b{letter-spacing:9.480415pt;}
.ls22{letter-spacing:9.723612pt;}
.ls24{letter-spacing:10.022275pt;}
.ls23{letter-spacing:10.026541pt;}
.ls7{letter-spacing:11.050400pt;}
.ls37{letter-spacing:11.205333pt;}
.ls8{letter-spacing:11.268267pt;}
.ls2d{letter-spacing:11.344000pt;}
.ls9{letter-spacing:11.354400pt;}
.ls1e{letter-spacing:11.397333pt;}
.ls36{letter-spacing:11.498667pt;}
.ls30{letter-spacing:11.541333pt;}
.ls31{letter-spacing:11.552000pt;}
.ls33{letter-spacing:11.557333pt;}
.ls19{letter-spacing:11.562667pt;}
.ls21{letter-spacing:11.701333pt;}
.ls2f{letter-spacing:11.717333pt;}
.ls35{letter-spacing:11.802667pt;}
.ls20{letter-spacing:11.845333pt;}
.ls1f{letter-spacing:11.850667pt;}
.ls15{letter-spacing:11.866667pt;}
.ls1d{letter-spacing:11.925333pt;}
.ls34{letter-spacing:11.973867pt;}
.ls2e{letter-spacing:11.979200pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ls3{letter-spacing:18.777365pt;}
.ls1c{letter-spacing:965.952725pt;}
.ws30{word-spacing:-22.442386pt;}
.wse6{word-spacing:-17.885574pt;}
.wse4{word-spacing:-17.884494pt;}
.wsde{word-spacing:-17.583160pt;}
.ws132{word-spacing:-14.794667pt;}
.wsfd{word-spacing:-14.778667pt;}
.ws131{word-spacing:-14.773333pt;}
.ws130{word-spacing:-14.634667pt;}
.ws75{word-spacing:-14.629333pt;}
.wsc5{word-spacing:-14.624000pt;}
.wsfe{word-spacing:-14.613333pt;}
.ws12d{word-spacing:-14.512000pt;}
.ws128{word-spacing:-14.389333pt;}
.ws12b{word-spacing:-14.208000pt;}
.ws88{word-spacing:-13.642667pt;}
.ws8{word-spacing:-13.488000pt;}
.ws139{word-spacing:-12.213333pt;}
.ws15{word-spacing:-11.989183pt;}
.ws111{word-spacing:-11.925184pt;}
.ws18{word-spacing:-11.775853pt;}
.ws113{word-spacing:-11.622255pt;}
.ws178{word-spacing:-11.135861pt;}
.ws4e{word-spacing:-10.666533pt;}
.ws33{word-spacing:-9.599880pt;}
.ws7b{word-spacing:-3.961567pt;}
.ws135{word-spacing:-3.763169pt;}
.ws133{word-spacing:-3.628770pt;}
.ws155{word-spacing:-3.238360pt;}
.ws16{word-spacing:-3.157294pt;}
.ws17d{word-spacing:-3.148761pt;}
.ws18c{word-spacing:-3.144494pt;}
.ws154{word-spacing:-3.110361pt;}
.ws15c{word-spacing:-3.080495pt;}
.ws143{word-spacing:-3.059162pt;}
.ws18a{word-spacing:-3.046362pt;}
.ws7d{word-spacing:-3.025029pt;}
.ws2b{word-spacing:-3.014667pt;}
.ws167{word-spacing:-3.012229pt;}
.ws16e{word-spacing:-2.999429pt;}
.ws1c{word-spacing:-2.979200pt;}
.ws166{word-spacing:-2.973829pt;}
.ws5{word-spacing:-2.971200pt;}
.ws11{word-spacing:-2.969563pt;}
.ws14c{word-spacing:-2.965296pt;}
.ws152{word-spacing:-2.961030pt;}
.wsf{word-spacing:-2.956763pt;}
.ws1a{word-spacing:-2.953867pt;}
.ws170{word-spacing:-2.952496pt;}
.ws24{word-spacing:-2.948800pt;}
.ws188{word-spacing:-2.948230pt;}
.ws157{word-spacing:-2.943963pt;}
.ws145{word-spacing:-2.931163pt;}
.ws4{word-spacing:-2.923200pt;}
.ws3{word-spacing:-2.918400pt;}
.ws158{word-spacing:-2.918364pt;}
.wse{word-spacing:-2.914097pt;}
.ws18f{word-spacing:-2.909830pt;}
.ws26{word-spacing:-2.898133pt;}
.ws159{word-spacing:-2.897030pt;}
.wsb{word-spacing:-2.894400pt;}
.ws19{word-spacing:-2.893067pt;}
.ws14b{word-spacing:-2.892764pt;}
.ws164{word-spacing:-2.888497pt;}
.ws147{word-spacing:-2.884231pt;}
.ws16a{word-spacing:-2.879964pt;}
.ws13{word-spacing:-2.875697pt;}
.ws153{word-spacing:-2.871431pt;}
.ws171{word-spacing:-2.867164pt;}
.ws15b{word-spacing:-2.862898pt;}
.ws2c{word-spacing:-2.862667pt;}
.ws165{word-spacing:-2.858631pt;}
.ws183{word-spacing:-2.854364pt;}
.ws15e{word-spacing:-2.845831pt;}
.ws17a{word-spacing:-2.841564pt;}
.ws149{word-spacing:-2.837298pt;}
.ws25{word-spacing:-2.832267pt;}
.ws18e{word-spacing:-2.828765pt;}
.ws1b{word-spacing:-2.827200pt;}
.ws163{word-spacing:-2.824498pt;}
.ws6{word-spacing:-2.822400pt;}
.ws168{word-spacing:-2.820231pt;}
.ws10{word-spacing:-2.815965pt;}
.wsc{word-spacing:-2.808000pt;}
.ws191{word-spacing:-2.807432pt;}
.ws2a{word-spacing:-2.806933pt;}
.ws14e{word-spacing:-2.794632pt;}
.ws15d{word-spacing:-2.781832pt;}
.ws2d{word-spacing:-2.777565pt;}
.ws14d{word-spacing:-2.773299pt;}
.wsa{word-spacing:-2.769600pt;}
.ws14f{word-spacing:-2.769032pt;}
.ws169{word-spacing:-2.764765pt;}
.ws173{word-spacing:-2.760499pt;}
.ws18d{word-spacing:-2.756232pt;}
.ws16d{word-spacing:-2.751966pt;}
.ws18b{word-spacing:-2.743432pt;}
.ws180{word-spacing:-2.734899pt;}
.ws160{word-spacing:-2.722099pt;}
.ws20{word-spacing:-2.720800pt;}
.ws2{word-spacing:-2.707200pt;}
.ws1d{word-spacing:-2.700533pt;}
.ws21{word-spacing:-2.685333pt;}
.ws156{word-spacing:-2.683700pt;}
.ws22{word-spacing:-2.680267pt;}
.ws27{word-spacing:-2.675200pt;}
.ws9{word-spacing:-2.673600pt;}
.ws7{word-spacing:-2.668800pt;}
.ws146{word-spacing:-2.658100pt;}
.ws12{word-spacing:-2.653833pt;}
.ws1e{word-spacing:-2.649867pt;}
.ws29{word-spacing:-2.644800pt;}
.ws17f{word-spacing:-2.641034pt;}
.ws187{word-spacing:-2.636767pt;}
.ws14a{word-spacing:-2.628234pt;}
.ws2f{word-spacing:-2.623967pt;}
.ws1f{word-spacing:-2.614400pt;}
.ws189{word-spacing:-2.611167pt;}
.ws16f{word-spacing:-2.602634pt;}
.ws148{word-spacing:-2.589834pt;}
.ws28{word-spacing:-2.589067pt;}
.ws150{word-spacing:-2.585568pt;}
.ws16c{word-spacing:-2.581301pt;}
.ws14{word-spacing:-2.572768pt;}
.ws162{word-spacing:-2.568501pt;}
.ws186{word-spacing:-2.555701pt;}
.ws176{word-spacing:-2.547168pt;}
.ws184{word-spacing:-2.542902pt;}
.ws161{word-spacing:-2.538635pt;}
.ws142{word-spacing:-2.530102pt;}
.ws181{word-spacing:-2.517302pt;}
.ws17{word-spacing:-2.504502pt;}
.ws151{word-spacing:-2.500235pt;}
.ws23{word-spacing:-2.497867pt;}
.ws15a{word-spacing:-2.495969pt;}
.ws16b{word-spacing:-2.470369pt;}
.ws17c{word-spacing:-2.466103pt;}
.ws17e{word-spacing:-2.461836pt;}
.ws172{word-spacing:-2.457569pt;}
.wsd{word-spacing:-2.444769pt;}
.ws144{word-spacing:-2.440503pt;}
.ws1{word-spacing:-2.428800pt;}
.ws182{word-spacing:-2.423436pt;}
.ws190{word-spacing:-2.414903pt;}
.ws185{word-spacing:-2.385037pt;}
.ws0{word-spacing:-2.355171pt;}
.ws175{word-spacing:-1.954109pt;}
.ws174{word-spacing:-1.783444pt;}
.ws177{word-spacing:-1.774911pt;}
.ws179{word-spacing:-1.710912pt;}
.ws10b{word-spacing:-0.883189pt;}
.wse1{word-spacing:-0.878922pt;}
.ws48{word-spacing:-0.814923pt;}
.wsec{word-spacing:-0.810657pt;}
.ws41{word-spacing:-0.793590pt;}
.ws3d{word-spacing:-0.780790pt;}
.wsef{word-spacing:-0.778667pt;}
.ws53{word-spacing:-0.776524pt;}
.ws83{word-spacing:-0.763724pt;}
.wsf7{word-spacing:-0.738124pt;}
.wsf1{word-spacing:-0.736000pt;}
.ws49{word-spacing:-0.725324pt;}
.ws35{word-spacing:-0.708258pt;}
.ws3b{word-spacing:-0.703991pt;}
.ws109{word-spacing:-0.699725pt;}
.ws3a{word-spacing:-0.695458pt;}
.ws107{word-spacing:-0.693333pt;}
.ws5b{word-spacing:-0.688000pt;}
.ws37{word-spacing:-0.682658pt;}
.ws55{word-spacing:-0.674125pt;}
.ws108{word-spacing:-0.665592pt;}
.ws3f{word-spacing:-0.661325pt;}
.ws4b{word-spacing:-0.657058pt;}
.ws43{word-spacing:-0.648525pt;}
.ws45{word-spacing:-0.635725pt;}
.ws3c{word-spacing:-0.631459pt;}
.ws84{word-spacing:-0.601592pt;}
.ws39{word-spacing:-0.597326pt;}
.ws54{word-spacing:-0.588793pt;}
.ws36{word-spacing:-0.584526pt;}
.ws82{word-spacing:-0.580259pt;}
.ws4d{word-spacing:-0.571726pt;}
.ws81{word-spacing:-0.567460pt;}
.ws42{word-spacing:-0.563193pt;}
.ws31{word-spacing:-0.554660pt;}
.wse8{word-spacing:-0.550393pt;}
.ws4a{word-spacing:-0.541860pt;}
.wse7{word-spacing:-0.537593pt;}
.wse9{word-spacing:-0.520527pt;}
.ws38{word-spacing:-0.507727pt;}
.ws34{word-spacing:-0.503460pt;}
.ws122{word-spacing:-0.501333pt;}
.ws93{word-spacing:-0.496000pt;}
.ws32{word-spacing:-0.486394pt;}
.ws4c{word-spacing:-0.482127pt;}
.ws121{word-spacing:-0.480000pt;}
.ws124{word-spacing:-0.469333pt;}
.ws40{word-spacing:-0.469327pt;}
.ws115{word-spacing:-0.465061pt;}
.wsf8{word-spacing:-0.460794pt;}
.ws8f{word-spacing:-0.458667pt;}
.ws119{word-spacing:-0.453333pt;}
.ws80{word-spacing:-0.452261pt;}
.ws6c{word-spacing:-0.448000pt;}
.wsab{word-spacing:-0.447994pt;}
.ws3e{word-spacing:-0.443728pt;}
.ws123{word-spacing:-0.442667pt;}
.ws44{word-spacing:-0.439461pt;}
.ws117{word-spacing:-0.435195pt;}
.ws51{word-spacing:-0.430928pt;}
.ws47{word-spacing:-0.418128pt;}
.ws5c{word-spacing:-0.416000pt;}
.wse2{word-spacing:-0.413861pt;}
.ws52{word-spacing:-0.409595pt;}
.ws11a{word-spacing:-0.405333pt;}
.ws100{word-spacing:-0.405328pt;}
.wse3{word-spacing:-0.400000pt;}
.ws76{word-spacing:-0.394667pt;}
.ws4f{word-spacing:-0.392528pt;}
.ws126{word-spacing:-0.389333pt;}
.ws5a{word-spacing:-0.384000pt;}
.ws10a{word-spacing:-0.379729pt;}
.ws70{word-spacing:-0.378667pt;}
.wsbb{word-spacing:-0.373333pt;}
.wsf4{word-spacing:-0.371195pt;}
.wsc1{word-spacing:-0.368000pt;}
.wsf0{word-spacing:-0.362667pt;}
.wsc3{word-spacing:-0.357333pt;}
.ws105{word-spacing:-0.352000pt;}
.wsdc{word-spacing:-0.349862pt;}
.wsa2{word-spacing:-0.346667pt;}
.wsf9{word-spacing:-0.341333pt;}
.wsbc{word-spacing:-0.336000pt;}
.wsd3{word-spacing:-0.332796pt;}
.ws106{word-spacing:-0.330667pt;}
.ws104{word-spacing:-0.328529pt;}
.ws63{word-spacing:-0.325333pt;}
.ws72{word-spacing:-0.320000pt;}
.ws7f{word-spacing:-0.319996pt;}
.ws8b{word-spacing:-0.314667pt;}
.ws60{word-spacing:-0.309333pt;}
.ws9c{word-spacing:-0.304000pt;}
.ws116{word-spacing:-0.302930pt;}
.ws6e{word-spacing:-0.298667pt;}
.ws46{word-spacing:-0.298663pt;}
.wseb{word-spacing:-0.297745pt;}
.wsf6{word-spacing:-0.294396pt;}
.wsb7{word-spacing:-0.293333pt;}
.wse5{word-spacing:-0.292411pt;}
.wsb6{word-spacing:-0.288000pt;}
.wsc4{word-spacing:-0.282667pt;}
.wsc0{word-spacing:-0.277333pt;}
.wsbd{word-spacing:-0.272000pt;}
.ws95{word-spacing:-0.266667pt;}
.wsdf{word-spacing:-0.264530pt;}
.ws6f{word-spacing:-0.261333pt;}
.wsdd{word-spacing:-0.260263pt;}
.ws5d{word-spacing:-0.256000pt;}
.ws50{word-spacing:-0.255997pt;}
.wsaa{word-spacing:-0.251730pt;}
.ws61{word-spacing:-0.250667pt;}
.wsa6{word-spacing:-0.247464pt;}
.ws57{word-spacing:-0.245333pt;}
.ws11c{word-spacing:-0.240000pt;}
.ws11e{word-spacing:-0.234667pt;}
.ws7e{word-spacing:-0.234664pt;}
.ws65{word-spacing:-0.229333pt;}
.wsb9{word-spacing:-0.224000pt;}
.ws91{word-spacing:-0.218667pt;}
.ws11b{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.208000pt;}
.ws8d{word-spacing:-0.202667pt;}
.ws99{word-spacing:-0.197333pt;}
.wsa9{word-spacing:-0.196264pt;}
.ws58{word-spacing:-0.192000pt;}
.ws6a{word-spacing:-0.186667pt;}
.ws9e{word-spacing:-0.181333pt;}
.ws8c{word-spacing:-0.176000pt;}
.ws5f{word-spacing:-0.170667pt;}
.wsf5{word-spacing:-0.170665pt;}
.ws67{word-spacing:-0.165333pt;}
.ws71{word-spacing:-0.160000pt;}
.ws114{word-spacing:-0.157865pt;}
.ws77{word-spacing:-0.154667pt;}
.wsd6{word-spacing:-0.150581pt;}
.ws11d{word-spacing:-0.149333pt;}
.wsd2{word-spacing:-0.149331pt;}
.wsda{word-spacing:-0.148701pt;}
.wsc8{word-spacing:-0.145065pt;}
.ws7a{word-spacing:-0.144000pt;}
.ws103{word-spacing:-0.140798pt;}
.ws118{word-spacing:-0.138667pt;}
.wse0{word-spacing:-0.136532pt;}
.ws64{word-spacing:-0.133333pt;}
.ws11f{word-spacing:-0.128000pt;}
.wsd0{word-spacing:-0.123732pt;}
.wsa0{word-spacing:-0.122667pt;}
.wsd8{word-spacing:-0.120216pt;}
.wsc7{word-spacing:-0.117333pt;}
.ws97{word-spacing:-0.106667pt;}
.ws120{word-spacing:-0.096000pt;}
.ws79{word-spacing:-0.090667pt;}
.ws73{word-spacing:-0.085333pt;}
.wsea{word-spacing:-0.085332pt;}
.wsb4{word-spacing:-0.081066pt;}
.ws6b{word-spacing:-0.080000pt;}
.wsf2{word-spacing:-0.074667pt;}
.ws5e{word-spacing:-0.069333pt;}
.wsca{word-spacing:-0.068266pt;}
.wsbf{word-spacing:-0.064000pt;}
.wsc2{word-spacing:-0.058667pt;}
.ws101{word-spacing:-0.055466pt;}
.ws62{word-spacing:-0.048000pt;}
.wsed{word-spacing:-0.042667pt;}
.ws98{word-spacing:-0.037333pt;}
.ws10f{word-spacing:-0.034133pt;}
.ws59{word-spacing:-0.032000pt;}
.wsa4{word-spacing:-0.029866pt;}
.ws69{word-spacing:-0.026667pt;}
.wsce{word-spacing:-0.025600pt;}
.ws78{word-spacing:-0.021333pt;}
.wsb0{word-spacing:-0.017066pt;}
.ws13e{word-spacing:-0.016000pt;}
.ws8e{word-spacing:-0.010667pt;}
.ws56{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.021333pt;}
.wsfa{word-spacing:0.026667pt;}
.ws102{word-spacing:0.029866pt;}
.ws74{word-spacing:0.032000pt;}
.wscc{word-spacing:0.042666pt;}
.wsa3{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.053333pt;}
.wsd1{word-spacing:0.055466pt;}
.wsff{word-spacing:0.068266pt;}
.ws13c{word-spacing:0.069333pt;}
.ws112{word-spacing:0.081066pt;}
.ws9b{word-spacing:0.085333pt;}
.ws66{word-spacing:0.090667pt;}
.wsee{word-spacing:0.096000pt;}
.wsb1{word-spacing:0.098132pt;}
.ws9f{word-spacing:0.101333pt;}
.wsb8{word-spacing:0.112000pt;}
.ws68{word-spacing:0.117333pt;}
.ws12c{word-spacing:0.122667pt;}
.wscf{word-spacing:0.149331pt;}
.ws96{word-spacing:0.153599pt;}
.wsd4{word-spacing:0.155750pt;}
.ws94{word-spacing:0.165333pt;}
.ws10d{word-spacing:0.166398pt;}
.ws129{word-spacing:0.170667pt;}
.ws7c{word-spacing:0.172799pt;}
.ws125{word-spacing:0.186667pt;}
.ws10e{word-spacing:0.187731pt;}
.wsc6{word-spacing:0.192000pt;}
.ws12a{word-spacing:0.202667pt;}
.wsfb{word-spacing:0.213333pt;}
.ws12e{word-spacing:0.218667pt;}
.wsa5{word-spacing:0.221864pt;}
.ws110{word-spacing:0.234664pt;}
.wsbe{word-spacing:0.243198pt;}
.ws12f{word-spacing:0.245333pt;}
.wscb{word-spacing:0.264530pt;}
.ws9a{word-spacing:0.277333pt;}
.ws9d{word-spacing:0.281598pt;}
.ws127{word-spacing:0.288000pt;}
.ws13a{word-spacing:0.293333pt;}
.wsba{word-spacing:0.294398pt;}
.ws10c{word-spacing:0.298663pt;}
.ws140{word-spacing:0.304000pt;}
.ws92{word-spacing:0.313597pt;}
.wsfc{word-spacing:0.326397pt;}
.wsf3{word-spacing:0.332796pt;}
.wsb5{word-spacing:0.346667pt;}
.ws90{word-spacing:0.364797pt;}
.ws134{word-spacing:0.384000pt;}
.ws85{word-spacing:0.448000pt;}
.wscd{word-spacing:0.477861pt;}
.ws89{word-spacing:0.554667pt;}
.ws137{word-spacing:0.592000pt;}
.ws13b{word-spacing:0.629333pt;}
.ws87{word-spacing:0.650667pt;}
.ws138{word-spacing:0.677333pt;}
.ws86{word-spacing:0.688000pt;}
.ws13d{word-spacing:0.752000pt;}
.ws8a{word-spacing:0.869333pt;}
.ws13f{word-spacing:0.912000pt;}
.ws136{word-spacing:1.029333pt;}
.ws2e{word-spacing:30.745216pt;}
.ws15f{word-spacing:41.637880pt;}
.ws17b{word-spacing:41.642146pt;}
.ws141{word-spacing:41.697612pt;}
.wsaf{word-spacing:87.149844pt;}
.wsa7{word-spacing:87.243709pt;}
.wsa8{word-spacing:87.260776pt;}
.wsad{word-spacing:106.784799pt;}
.wsd9{word-spacing:135.715506pt;}
.wsae{word-spacing:138.494269pt;}
.wsac{word-spacing:140.956105pt;}
.wsdb{word-spacing:163.534173pt;}
.wsd7{word-spacing:200.723506pt;}
.wsd5{word-spacing:246.382173pt;}
.wsb3{word-spacing:250.160073pt;}
.wsb2{word-spacing:329.745211pt;}
._8{margin-left:-3.323692pt;}
._0{margin-left:-0.989854pt;}
._6{width:1.231200pt;}
._31{width:2.287127pt;}
._2{width:3.219200pt;}
._3{width:8.106565pt;}
._4{width:9.749211pt;}
._a{width:10.965333pt;}
._5{width:12.078933pt;}
._9{width:13.048533pt;}
._b{width:14.886276pt;}
._c{width:18.696300pt;}
._1{width:22.137600pt;}
._33{width:23.487706pt;}
._16{width:99.996617pt;}
._29{width:109.297834pt;}
._10{width:110.419953pt;}
._17{width:134.837781pt;}
._f{width:151.810369pt;}
._11{width:158.214556pt;}
._28{width:160.002267pt;}
._30{width:192.168265pt;}
._2c{width:197.706329pt;}
._2e{width:201.618813pt;}
._2d{width:203.338258pt;}
._e{width:208.607526pt;}
._2f{width:224.475061pt;}
._18{width:246.021458pt;}
._2a{width:255.621338pt;}
._21{width:272.261130pt;}
._1f{width:278.789048pt;}
._24{width:285.487631pt;}
._22{width:293.427799pt;}
._1d{width:299.243193pt;}
._27{width:302.571151pt;}
._26{width:310.511319pt;}
._15{width:337.079520pt;}
._2b{width:349.047370pt;}
._20{width:351.705470pt;}
._14{width:355.758753pt;}
._12{width:357.636063pt;}
._1e{width:369.040720pt;}
._23{width:375.739303pt;}
._25{width:394.427070pt;}
._1c{width:414.629484pt;}
._1a{width:431.798336pt;}
._1b{width:488.070699pt;}
._19{width:546.642767pt;}
._d{width:703.342675pt;}
._13{width:787.284025pt;}
._32{width:1316.971271pt;}
._7{width:1339.567255pt;}
.fsa{font-size:28.440000pt;}
.fsb{font-size:29.865600pt;}
.fs4{font-size:31.995733pt;}
.fs9{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:48.000000pt;}
.y120{bottom:91.616017pt;}
.y14c{bottom:106.356525pt;}
.y139{bottom:110.665333pt;}
.y81{bottom:110.665467pt;}
.y10c{bottom:110.665634pt;}
.ye6{bottom:110.666189pt;}
.y1a5{bottom:110.666500pt;}
.y53{bottom:110.666724pt;}
.y11f{bottom:112.252559pt;}
.y10e{bottom:118.073092pt;}
.y152{bottom:121.478667pt;}
.y128{bottom:122.760000pt;}
.y1de{bottom:122.990008pt;}
.y1a4{bottom:123.366075pt;}
.y11e{bottom:124.951891pt;}
.y52{bottom:125.331074pt;}
.y14b{bottom:126.992317pt;}
.y80{bottom:127.974800pt;}
.y138{bottom:127.976000pt;}
.ye5{bottom:130.697939pt;}
.y10d{bottom:130.771600pt;}
.y1dd{bottom:135.613850pt;}
.y1a3{bottom:135.988851pt;}
.y11d{bottom:137.574667pt;}
.y11b{bottom:137.574983pt;}
.y10b{bottom:138.557333pt;}
.y151{bottom:138.789333pt;}
.y14a{bottom:139.691891pt;}
.y51{bottom:139.995424pt;}
.y127{bottom:140.070667pt;}
.y11c{bottom:142.337333pt;}
.y137{bottom:145.361333pt;}
.ye4{bottom:147.327064pt;}
.y1dc{bottom:148.312358pt;}
.y11a{bottom:150.274558pt;}
.ybb{bottom:150.652000pt;}
.y10a{bottom:150.652579pt;}
.y7f{bottom:150.652734pt;}
.y149{bottom:152.314667pt;}
.y1e5{bottom:152.999233pt;}
.y1a2{bottom:153.299568pt;}
.y50{bottom:154.660840pt;}
.y150{bottom:156.100000pt;}
.y126{bottom:157.380000pt;}
.y136{bottom:162.670667pt;}
.y119{bottom:162.897333pt;}
.ye3{bottom:164.032989pt;}
.y1db{bottom:165.623075pt;}
.y1a1{bottom:165.999142pt;}
.y4f{bottom:169.325190pt;}
.y14f{bottom:173.409333pt;}
.y7e{bottom:174.689333pt;}
.y125{bottom:174.766667pt;}
.y109{bottom:175.672555pt;}
.y1da{bottom:178.321583pt;}
.ye2{bottom:180.662114pt;}
.y1a0{bottom:183.308792pt;}
.y4e{bottom:183.989540pt;}
.y135{bottom:185.348000pt;}
.y2f{bottom:187.240133pt;}
.yba{bottom:188.826667pt;}
.y14e{bottom:190.794667pt;}
.y1d9{bottom:190.945425pt;}
.y124{bottom:192.076000pt;}
.y108{bottom:192.302748pt;}
.y1e4{bottom:195.632300pt;}
.y19f{bottom:196.008367pt;}
.y179{bottom:197.901333pt;}
.y4c{bottom:198.653890pt;}
.y4d{bottom:198.881087pt;}
.ye1{bottom:200.466667pt;}
.y2e{bottom:205.910800pt;}
.yb9{bottom:206.137333pt;}
.y14d{bottom:208.105333pt;}
.y1d8{bottom:208.331875pt;}
.y19e{bottom:208.631143pt;}
.y107{bottom:209.008672pt;}
.y123{bottom:209.386667pt;}
.y4b{bottom:213.318240pt;}
.y178{bottom:215.210667pt;}
.y1d7{bottom:220.954650pt;}
.y134{bottom:221.481333pt;}
.y106{bottom:221.707180pt;}
.yb8{bottom:223.448000pt;}
.y2d{bottom:224.581467pt;}
.y7d{bottom:225.416000pt;}
.y19d{bottom:226.017592pt;}
.y122{bottom:226.696000pt;}
.yd4{bottom:231.460000pt;}
.y177{bottom:232.521333pt;}
.y1d6{bottom:233.654225pt;}
.y4a{bottom:235.995290pt;}
.y19c{bottom:238.640367pt;}
.y133{bottom:238.866667pt;}
.yb7{bottom:240.833333pt;}
.y105{bottom:241.436000pt;}
.y7c{bottom:242.801333pt;}
.y2c{bottom:243.252133pt;}
.yd3{bottom:248.845333pt;}
.y121{bottom:249.373333pt;}
.y176{bottom:249.906667pt;}
.y49{bottom:250.659640pt;}
.y1d5{bottom:250.963875pt;}
.y19b{bottom:251.339942pt;}
.y132{bottom:256.177333pt;}
.yb6{bottom:258.144000pt;}
.y7b{bottom:260.112000pt;}
.y2b{bottom:261.922800pt;}
.y1d4{bottom:263.663450pt;}
.y48{bottom:265.323990pt;}
.yd2{bottom:266.156000pt;}
.y175{bottom:267.217333pt;}
.y19a{bottom:268.650659pt;}
.y104{bottom:272.504000pt;}
.y131{bottom:273.488000pt;}
.yb5{bottom:275.453333pt;}
.y1d3{bottom:276.287292pt;}
.y7a{bottom:277.421333pt;}
.y12e{bottom:279.610283pt;}
.y2a{bottom:280.593467pt;}
.y199{bottom:281.349167pt;}
.yd1{bottom:283.466667pt;}
.y174{bottom:284.528000pt;}
.y47{bottom:288.001040pt;}
.y1d2{bottom:288.985800pt;}
.y103{bottom:289.814667pt;}
.y130{bottom:290.873333pt;}
.yb4{bottom:292.838667pt;}
.y198{bottom:293.973009pt;}
.y79{bottom:294.806667pt;}
.y29{bottom:299.264133pt;}
.y12d{bottom:300.322558pt;}
.yd0{bottom:300.852000pt;}
.y173{bottom:301.837333pt;}
.y46{bottom:302.666457pt;}
.y1d1{bottom:306.296517pt;}
.y102{bottom:307.124000pt;}
.y100{bottom:307.125333pt;}
.y12f{bottom:308.182667pt;}
.yb3{bottom:310.149333pt;}
.y197{bottom:311.358392pt;}
.y78{bottom:312.117333pt;}
.y12c{bottom:312.945809pt;}
.y101{bottom:313.096000pt;}
.y45{bottom:317.330807pt;}
.y28{bottom:317.936067pt;}
.ycf{bottom:318.161333pt;}
.y1d0{bottom:318.995025pt;}
.y172{bottom:319.222667pt;}
.y196{bottom:323.982234pt;}
.yff{bottom:324.512000pt;}
.y12b{bottom:325.644317pt;}
.yb2{bottom:327.460000pt;}
.y77{bottom:329.428000pt;}
.y1cf{bottom:331.618867pt;}
.y44{bottom:331.995157pt;}
.yce{bottom:335.472000pt;}
.y171{bottom:336.533333pt;}
.y13d{bottom:336.605109pt;}
.y27{bottom:336.606733pt;}
.y195{bottom:336.681809pt;}
.y12a{bottom:338.268159pt;}
.yfe{bottom:341.821333pt;}
.y1e3{bottom:344.318441pt;}
.yb1{bottom:344.769333pt;}
.y43{bottom:346.659507pt;}
.y76{bottom:346.813333pt;}
.y1ce{bottom:348.929584pt;}
.y194{bottom:349.304584pt;}
.y129{bottom:350.966667pt;}
.ycd{bottom:352.782667pt;}
.y170{bottom:353.844000pt;}
.y26{bottom:355.277400pt;}
.y13c{bottom:357.316317pt;}
.yfd{bottom:359.132000pt;}
.yb0{bottom:359.886667pt;}
.y42{bottom:361.323857pt;}
.y1cd{bottom:361.628092pt;}
.y193{bottom:362.004159pt;}
.yaf{bottom:362.154667pt;}
.y75{bottom:364.124000pt;}
.y13b{bottom:369.940159pt;}
.ycc{bottom:370.168000pt;}
.y16f{bottom:371.229333pt;}
.y25{bottom:373.948067pt;}
.y1cc{bottom:374.327666pt;}
.y192{bottom:374.702667pt;}
.yfc{bottom:376.517333pt;}
.yae{bottom:379.464000pt;}
.y74{bottom:381.433333pt;}
.y13a{bottom:382.638667pt;}
.y41{bottom:384.000907pt;}
.y1e2{bottom:386.951508pt;}
.ycb{bottom:387.478667pt;}
.y16e{bottom:388.540000pt;}
.y1cb{bottom:391.637317pt;}
.y24{bottom:392.618733pt;}
.y191{bottom:392.693333pt;}
.yfb{bottom:393.828000pt;}
.y73{bottom:398.744000pt;}
.yad{bottom:402.141333pt;}
.y1ca{bottom:404.261159pt;}
.yca{bottom:404.788000pt;}
.y16d{bottom:405.849333pt;}
.y40{bottom:406.677957pt;}
.yfa{bottom:411.137333pt;}
.y23{bottom:411.289400pt;}
.y72{bottom:416.129333pt;}
.y1c9{bottom:416.960733pt;}
.yc9{bottom:422.173333pt;}
.y16c{bottom:423.234667pt;}
.yf9{bottom:428.448000pt;}
.y3f{bottom:429.355007pt;}
.y1c8{bottom:429.659241pt;}
.y22{bottom:429.885333pt;}
.y71{bottom:433.440000pt;}
.yc8{bottom:439.484000pt;}
.yac{bottom:440.241333pt;}
.y16b{bottom:440.545333pt;}
.y190{bottom:441.072000pt;}
.y1c7{bottom:442.283084pt;}
.yf8{bottom:445.833333pt;}
.y21{bottom:448.556000pt;}
.y70{bottom:450.749333pt;}
.y3e{bottom:452.032056pt;}
.yc7{bottom:456.794667pt;}
.yab{bottom:457.626667pt;}
.y16a{bottom:457.856000pt;}
.y18f{bottom:458.382667pt;}
.y1c6{bottom:459.592734pt;}
.yf7{bottom:463.144000pt;}
.y3d{bottom:466.696406pt;}
.y20{bottom:467.226667pt;}
.y6f{bottom:468.134667pt;}
.y1c5{bottom:472.292308pt;}
.yc6{bottom:474.180000pt;}
.yaa{bottom:474.936000pt;}
.y169{bottom:475.241333pt;}
.yf6{bottom:480.453333pt;}
.y18e{bottom:482.420000pt;}
.y1c4{bottom:484.991883pt;}
.y6e{bottom:485.445333pt;}
.y1f{bottom:485.897333pt;}
.y3c{bottom:489.373456pt;}
.yc5{bottom:491.489333pt;}
.ya9{bottom:492.246667pt;}
.y168{bottom:492.550667pt;}
.y1c3{bottom:502.301533pt;}
.y6d{bottom:502.756000pt;}
.yf5{bottom:503.130667pt;}
.y3b{bottom:504.037806pt;}
.y1e{bottom:504.568000pt;}
.y18d{bottom:506.382667pt;}
.ya8{bottom:509.632000pt;}
.y167{bottom:509.861333pt;}
.yc4{bottom:514.166667pt;}
.y1c2{bottom:514.925375pt;}
.y3a{bottom:518.703223pt;}
.y6c{bottom:520.141333pt;}
.y1d{bottom:523.238667pt;}
.ya7{bottom:526.942667pt;}
.y166{bottom:527.172000pt;}
.y1c1{bottom:527.623883pt;}
.y18a{bottom:530.420000pt;}
.y18b{bottom:531.100000pt;}
.y39{bottom:533.367573pt;}
.y18c{bottom:533.897333pt;}
.y6b{bottom:537.452000pt;}
.y1c0{bottom:540.323458pt;}
.yf4{bottom:540.700000pt;}
.y1c{bottom:541.909333pt;}
.ya6{bottom:544.252000pt;}
.y165{bottom:544.557333pt;}
.y38{bottom:548.031923pt;}
.yc3{bottom:553.021333pt;}
.y189{bottom:554.381333pt;}
.y6a{bottom:554.761333pt;}
.y1bf{bottom:557.634175pt;}
.yf3{bottom:558.085333pt;}
.y1b{bottom:560.580000pt;}
.y164{bottom:561.868000pt;}
.y37{bottom:562.696273pt;}
.ya5{bottom:566.929333pt;}
.y1be{bottom:570.256950pt;}
.yc2{bottom:570.408000pt;}
.y69{bottom:572.146667pt;}
.yf2{bottom:575.396000pt;}
.y186{bottom:578.420000pt;}
.y187{bottom:579.100000pt;}
.y163{bottom:579.177333pt;}
.y1a{bottom:579.250667pt;}
.y188{bottom:581.897333pt;}
.y1bd{bottom:582.956525pt;}
.y36{bottom:584.541333pt;}
.yc1{bottom:587.717333pt;}
.y68{bottom:589.457333pt;}
.yf1{bottom:592.705333pt;}
.y1bc{bottom:595.655033pt;}
.y185{bottom:595.729333pt;}
.y162{bottom:596.562667pt;}
.y19{bottom:597.921333pt;}
.yc0{bottom:605.028000pt;}
.ya4{bottom:605.102667pt;}
.y67{bottom:606.768000pt;}
.yf0{bottom:610.090667pt;}
.y1bb{bottom:612.965750pt;}
.y161{bottom:613.873333pt;}
.y184{bottom:619.768000pt;}
.ya3{bottom:622.413333pt;}
.y66{bottom:624.077333pt;}
.y1ba{bottom:625.665325pt;}
.y18{bottom:627.250667pt;}
.y160{bottom:631.184000pt;}
.yef{bottom:632.694067pt;}
.y181{bottom:637.077333pt;}
.y182{bottom:637.757333pt;}
.y1b9{bottom:638.288100pt;}
.ya2{bottom:639.724000pt;}
.y183{bottom:640.554667pt;}
.y65{bottom:641.464000pt;}
.y15f{bottom:648.569333pt;}
.y1b8{bottom:650.987675pt;}
.yee{bottom:656.730667pt;}
.ya1{bottom:657.033333pt;}
.y64{bottom:658.773333pt;}
.y180{bottom:661.040000pt;}
.y35{bottom:661.796000pt;}
.y15e{bottom:665.880000pt;}
.y1b7{bottom:668.297325pt;}
.ya0{bottom:674.418667pt;}
.ybf{bottom:674.420000pt;}
.y9e{bottom:674.421333pt;}
.y63{bottom:676.084000pt;}
.y34{bottom:677.140000pt;}
.y17f{bottom:678.425333pt;}
.y9f{bottom:680.314667pt;}
.y17{bottom:680.845167pt;}
.y1b6{bottom:680.996900pt;}
.y15d{bottom:683.189333pt;}
.ybe{bottom:691.729333pt;}
.y9d{bottom:691.730667pt;}
.y33{bottom:692.409333pt;}
.y62{bottom:693.469333pt;}
.y1b5{bottom:693.620742pt;}
.yed{bottom:694.300000pt;}
.y15c{bottom:700.500000pt;}
.y17e{bottom:702.386667pt;}
.y1b4{bottom:706.319250pt;}
.y16{bottom:707.528567pt;}
.y32{bottom:707.754667pt;}
.ybd{bottom:709.040000pt;}
.y9c{bottom:709.041333pt;}
.y61{bottom:710.780000pt;}
.y1e1{bottom:710.930392pt;}
.yec{bottom:711.610667pt;}
.y15b{bottom:717.885333pt;}
.y14{bottom:720.832934pt;}
.y15{bottom:721.210529pt;}
.y31{bottom:723.098667pt;}
.y1b3{bottom:723.629967pt;}
.y17d{bottom:725.064000pt;}
.ybc{bottom:726.349333pt;}
.y9b{bottom:726.426667pt;}
.y60{bottom:728.089333pt;}
.yeb{bottom:728.996000pt;}
.y12{bottom:734.211967pt;}
.y13{bottom:734.439164pt;}
.y15a{bottom:735.196000pt;}
.y1b2{bottom:736.328475pt;}
.y9a{bottom:743.737333pt;}
.y5f{bottom:745.474667pt;}
.yea{bottom:746.305333pt;}
.y10{bottom:747.516334pt;}
.y11{bottom:747.818196pt;}
.y1b1{bottom:748.952317pt;}
.y141{bottom:751.976000pt;}
.y159{bottom:752.505333pt;}
.y1e0{bottom:753.639192pt;}
.y115{bottom:756.209333pt;}
.ye{bottom:760.819634pt;}
.y99{bottom:761.046667pt;}
.yf{bottom:761.197229pt;}
.y5e{bottom:762.785333pt;}
.y1b0{bottom:766.263034pt;}
.ye9{bottom:768.982667pt;}
.y140{bottom:769.361333pt;}
.y158{bottom:769.890667pt;}
.ye0{bottom:771.857116pt;}
.y114{bottom:773.594667pt;}
.yd{bottom:774.198667pt;}
.y17c{bottom:774.804000pt;}
.y98{bottom:776.164000pt;}
.y97{bottom:778.432000pt;}
.y1af{bottom:778.961542pt;}
.y5d{bottom:780.096000pt;}
.y13f{bottom:786.672000pt;}
.y157{bottom:787.201333pt;}
.y113{bottom:790.905333pt;}
.y1ae{bottom:791.661116pt;}
.ydf{bottom:791.888866pt;}
.y17b{bottom:792.113333pt;}
.y96{bottom:795.742667pt;}
.y1df{bottom:796.272259pt;}
.y5c{bottom:797.405333pt;}
.yc{bottom:798.160000pt;}
.ya{bottom:798.161333pt;}
.yb{bottom:803.528000pt;}
.y13e{bottom:803.981333pt;}
.y156{bottom:804.512000pt;}
.y8e{bottom:804.964417pt;}
.ye8{bottom:806.550667pt;}
.y112{bottom:808.216000pt;}
.yde{bottom:808.517991pt;}
.y1ad{bottom:808.970767pt;}
.y6{bottom:812.825333pt;}
.y95{bottom:813.052000pt;}
.y8{bottom:813.126533pt;}
.y17a{bottom:814.790667pt;}
.y5b{bottom:814.792000pt;}
.y9{bottom:815.318933pt;}
.y7{bottom:818.192000pt;}
.y8d{bottom:819.629833pt;}
.y1ac{bottom:821.594609pt;}
.y155{bottom:821.897333pt;}
.ydd{bottom:825.223916pt;}
.y111{bottom:825.601333pt;}
.y4{bottom:827.489333pt;}
.ye7{bottom:829.228000pt;}
.y5a{bottom:832.101333pt;}
.y5{bottom:832.857333pt;}
.y1ab{bottom:834.294183pt;}
.y148{bottom:835.654174pt;}
.y94{bottom:835.729333pt;}
.y154{bottom:839.208000pt;}
.ydc{bottom:841.853041pt;}
.y8c{bottom:842.306883pt;}
.y110{bottom:842.910667pt;}
.y1aa{bottom:846.992691pt;}
.y59{bottom:849.412000pt;}
.y147{bottom:856.289650pt;}
.y153{bottom:856.517333pt;}
.y8b{bottom:856.971233pt;}
.ydb{bottom:858.483233pt;}
.y3{bottom:860.827467pt;}
.y1a9{bottom:864.303408pt;}
.y10f{bottom:865.588000pt;}
.y58{bottom:866.797333pt;}
.y146{bottom:868.989224pt;}
.y8a{bottom:871.635583pt;}
.y93{bottom:873.902667pt;}
.yda{bottom:875.189158pt;}
.y1a8{bottom:876.926184pt;}
.y145{bottom:881.613058pt;}
.y57{bottom:884.108000pt;}
.y88{bottom:886.299933pt;}
.y89{bottom:886.601796pt;}
.y1a7{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y92{bottom:891.213333pt;}
.yd9{bottom:891.818283pt;}
.y144{bottom:894.312633pt;}
.y118{bottom:898.923617pt;}
.y87{bottom:900.964283pt;}
.y56{bottom:901.417333pt;}
.y1a6{bottom:902.325333pt;}
.y143{bottom:906.936475pt;}
.y91{bottom:908.524000pt;}
.yd8{bottom:908.524208pt;}
.y85{bottom:915.628633pt;}
.y86{bottom:915.931563pt;}
.y55{bottom:918.802667pt;}
.y142{bottom:919.634983pt;}
.y117{bottom:919.635891pt;}
.y1{bottom:920.844000pt;}
.yd5{bottom:925.152781pt;}
.yd7{bottom:925.153333pt;}
.y90{bottom:925.833333pt;}
.yd6{bottom:929.914667pt;}
.y84{bottom:930.292983pt;}
.y116{bottom:932.258825pt;}
.y54{bottom:941.404000pt;}
.y8f{bottom:943.218667pt;}
.y83{bottom:944.957333pt;}
.y82{bottom:994.393333pt;}
.h11{height:21.330000pt;}
.h13{height:23.145840pt;}
.h4{height:24.828689pt;}
.hf{height:26.663600pt;}
.ha{height:31.082945pt;}
.h10{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h3{height:37.248000pt;}
.h16{height:38.562606pt;}
.h15{height:38.563342pt;}
.h18{height:38.565374pt;}
.h17{height:38.565606pt;}
.h12{height:38.567618pt;}
.h14{height:38.867872pt;}
.h8{height:39.266667pt;}
.h9{height:40.000000pt;}
.he{height:47.999600pt;}
.hd{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:48.000000pt;}
.x1e{left:63.496000pt;}
.x2f{left:74.456203pt;}
.x22{left:79.596405pt;}
.x32{left:104.616892pt;}
.x3d{left:115.502267pt;}
.x1f{left:133.643390pt;}
.x3b{left:140.446667pt;}
.x23{left:169.472615pt;}
.x2c{left:193.207785pt;}
.x3c{left:226.545333pt;}
.x39{left:233.272000pt;}
.x38{left:246.728000pt;}
.x1{left:266.682667pt;}
.x44{left:273.184000pt;}
.x20{left:282.632000pt;}
.x45{left:295.330923pt;}
.x8{left:311.433333pt;}
.x9{left:331.237333pt;}
.x33{left:351.947134pt;}
.x13{left:361.474667pt;}
.x24{left:366.916000pt;}
.x25{left:371.678667pt;}
.x14{left:381.202667pt;}
.x1a{left:384.376129pt;}
.x2{left:394.205333pt;}
.x3{left:413.933333pt;}
.x34{left:422.095590pt;}
.x41{left:425.572000pt;}
.x42{left:440.614667pt;}
.x28{left:441.826667pt;}
.x29{left:446.589333pt;}
.xa{left:454.828000pt;}
.x15{left:465.184000pt;}
.xb{left:474.557333pt;}
.x3e{left:481.660000pt;}
.x16{left:484.913333pt;}
.x2a{left:489.449333pt;}
.x4{left:492.472000pt;}
.x2b{left:497.084000pt;}
.x43{left:509.401333pt;}
.x5{left:512.201333pt;}
.x35{left:527.166277pt;}
.x3f{left:541.452000pt;}
.xc{left:555.212000pt;}
.xd{left:560.125333pt;}
.x30{left:563.225333pt;}
.x3a{left:565.417333pt;}
.x21{left:568.742667pt;}
.x31{left:571.464000pt;}
.x1c{left:577.508648pt;}
.xe{left:586.808533pt;}
.x36{left:596.708874pt;}
.xf{left:602.001733pt;}
.x6{left:604.950667pt;}
.x37{left:609.105519pt;}
.x40{left:610.238667pt;}
.x7{left:624.756000pt;}
.x17{left:644.106667pt;}
.x18{left:663.836000pt;}
.x10{left:673.208533pt;}
.x2d{left:680.314667pt;}
.x26{left:681.977333pt;}
.x11{left:684.170667pt;}
.x27{left:695.433333pt;}
.x12{left:696.492000pt;}
.x1b{left:709.187002pt;}
.x2e{left:711.986667pt;}
.x19{left:740.330079pt;}
}




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