
    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_538323900638384015c7e62d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_a99d9d7781d91023ce5e53a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_a1aabbe94746614949a2b2b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_e7117065053ca7f5c23bd209.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_4fe581e726692e2a5f1cee54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_0e33d51dbd3ce9b5e00ea439.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_3df27285473cfad33108e67a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_bb3983f05f687c92a645dc5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_74fd6e494cf7cc25e6a2b312.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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_a5f12a9a1091ae79335e9bff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_bf62afd6368087e1eb7f1ea4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.699000;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_52d06a70bad45cced1b7ddd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_09daf90d4c04278ec8a34b2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887450;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_9744636a0f87aa435741e671.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_ff602ef33319aeeb0ac0f5b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.696000;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_b9e5fa558d2db3dba35093dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.052000;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_2b1134aa8b121ca7820bde65.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;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_355e8ed4c318022c88323837.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;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.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);}
.m0{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-26.034521px;}
.va{vertical-align:-16.872337px;}
.v4{vertical-align:-5.982120px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.062201px;}
.vb{vertical-align:11.088222px;}
.v8{vertical-align:14.196284px;}
.v2{vertical-align:16.428329px;}
.v9{vertical-align:22.854457px;}
.v1{vertical-align:26.034521px;}
.v7{vertical-align:30.636613px;}
.v5{vertical-align:40.350807px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001002px;}
.lsb{letter-spacing:0.002375px;}
.lse{letter-spacing:0.002932px;}
.lsc{letter-spacing:0.003809px;}
.ls1a{letter-spacing:2.983260px;}
.ls0{letter-spacing:2.984975px;}
.ls1d{letter-spacing:2.988592px;}
.ls1e{letter-spacing:2.989260px;}
.ls1{letter-spacing:2.990975px;}
.ls13{letter-spacing:4.276066px;}
.lsd{letter-spacing:6.848512px;}
.ls6{letter-spacing:7.678633px;}
.ls4{letter-spacing:10.595611px;}
.lsf{letter-spacing:11.475643px;}
.ls10{letter-spacing:12.366278px;}
.ls1c{letter-spacing:14.208841px;}
.ls1b{letter-spacing:14.209286px;}
.ls5{letter-spacing:15.353706px;}
.lsa{letter-spacing:15.361866px;}
.ls19{letter-spacing:16.429529px;}
.ls12{letter-spacing:16.442704px;}
.ls14{letter-spacing:17.458329px;}
.ls11{letter-spacing:17.696729px;}
.ls9{letter-spacing:18.347649px;}
.ls18{letter-spacing:18.374255px;}
.ls17{letter-spacing:19.604279px;}
.ls16{letter-spacing:20.423773px;}
.ls7{letter-spacing:27.653032px;}
.ls8{letter-spacing:29.891158px;}
.ls15{letter-spacing:32.542631px;}
.ls22{letter-spacing:102.117835px;}
.ls20{letter-spacing:103.023619px;}
.ls21{letter-spacing:141.166382px;}
.ls1f{letter-spacing:141.172616px;}
.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:-55.295101px;}
.ws77{word-spacing:-36.072549px;}
.ws1{word-spacing:-17.933159px;}
.ws6b{word-spacing:-13.449869px;}
.wsaf{word-spacing:-11.955389px;}
.wsd{word-spacing:-3.227969px;}
.ws99{word-spacing:-3.120370px;}
.ws3f{word-spacing:-3.066570px;}
.wsc{word-spacing:-2.851372px;}
.wsc1{word-spacing:-2.797573px;}
.ws130{word-spacing:-2.725829px;}
.ws1e{word-spacing:-2.582375px;}
.ws12d{word-spacing:-2.582364px;}
.wsa3{word-spacing:-2.474776px;}
.wsa0{word-spacing:-2.420976px;}
.ws11{word-spacing:-2.367177px;}
.ws5e{word-spacing:-2.313377px;}
.ws5c{word-spacing:-2.259578px;}
.ws6f{word-spacing:-2.151979px;}
.ws29{word-spacing:-2.098180px;}
.ws12c{word-spacing:-2.008505px;}
.ws1f{word-spacing:-1.990581px;}
.ws74{word-spacing:-1.980529px;}
.ws85{word-spacing:-1.936781px;}
.ws28{word-spacing:-1.829182px;}
.ws72{word-spacing:-1.721583px;}
.ws56{word-spacing:-1.667784px;}
.wse5{word-spacing:-1.613984px;}
.ws14a{word-spacing:-1.578111px;}
.ws65{word-spacing:-1.560185px;}
.ws8e{word-spacing:-1.541436px;}
.ws112{word-spacing:-1.530290px;}
.wse4{word-spacing:-1.506385px;}
.ws38{word-spacing:-1.452586px;}
.ws10a{word-spacing:-1.440535px;}
.wsf9{word-spacing:-1.434647px;}
.ws13c{word-spacing:-1.433024px;}
.ws5b{word-spacing:-1.398786px;}
.ws13d{word-spacing:-1.386825px;}
.ws78{word-spacing:-1.344987px;}
.wsa9{word-spacing:-1.291187px;}
.ws10b{word-spacing:-1.147717px;}
.ws33{word-spacing:-1.129789px;}
.ws101{word-spacing:-1.099896px;}
.wsfc{word-spacing:-1.052074px;}
.wsb3{word-spacing:-1.022190px;}
.ws20{word-spacing:-0.968391px;}
.wsee{word-spacing:-0.914591px;}
.ws146{word-spacing:-0.812966px;}
.ws2e{word-spacing:-0.806992px;}
.ws147{word-spacing:-0.765145px;}
.ws2b{word-spacing:-0.753193px;}
.ws23{word-spacing:-0.699393px;}
.wsac{word-spacing:-0.645594px;}
.wsf8{word-spacing:-0.573859px;}
.ws19{word-spacing:-0.537995px;}
.ws18{word-spacing:-0.484195px;}
.wsaa{word-spacing:-0.430396px;}
.ws12b{word-spacing:-0.382572px;}
.wsb{word-spacing:-0.376596px;}
.ws120{word-spacing:-0.334751px;}
.wsae{word-spacing:-0.322797px;}
.ws105{word-spacing:-0.286929px;}
.ws8b{word-spacing:-0.268997px;}
.ws104{word-spacing:-0.239108px;}
.ws5d{word-spacing:-0.215198px;}
.wse7{word-spacing:-0.161398px;}
.ws91{word-spacing:-0.107599px;}
.ws2{word-spacing:-0.053799px;}
.ws55{word-spacing:-0.053798px;}
.ws71{word-spacing:-0.035866px;}
.ws76{word-spacing:-0.009562px;}
.ws132{word-spacing:-0.003998px;}
.ws108{word-spacing:-0.003320px;}
.wsfb{word-spacing:-0.003194px;}
.ws14d{word-spacing:-0.002881px;}
.ws12f{word-spacing:-0.002813px;}
.ws113{word-spacing:-0.002201px;}
.ws0{word-spacing:0.000000px;}
.ws11c{word-spacing:0.047822px;}
.ws11b{word-spacing:0.095643px;}
.wsf{word-spacing:0.107599px;}
.wsef{word-spacing:0.215198px;}
.ws13{word-spacing:0.322797px;}
.ws142{word-spacing:0.334751px;}
.wsc2{word-spacing:0.376596px;}
.ws143{word-spacing:0.382572px;}
.ws103{word-spacing:0.430394px;}
.ws5f{word-spacing:0.430396px;}
.ws4a{word-spacing:0.484195px;}
.wsb7{word-spacing:0.537995px;}
.ws111{word-spacing:0.573859px;}
.ws32{word-spacing:0.591794px;}
.ws61{word-spacing:0.645594px;}
.ws42{word-spacing:0.699393px;}
.wsc9{word-spacing:0.753193px;}
.ws30{word-spacing:0.806992px;}
.ws117{word-spacing:0.812966px;}
.ws90{word-spacing:0.860792px;}
.wsa5{word-spacing:0.914591px;}
.ws119{word-spacing:0.956431px;}
.ws4e{word-spacing:1.022190px;}
.ws49{word-spacing:1.075990px;}
.ws14b{word-spacing:1.099896px;}
.ws125{word-spacing:1.147717px;}
.ws44{word-spacing:1.183588px;}
.ws75{word-spacing:1.237388px;}
.ws106{word-spacing:1.252044px;}
.ws107{word-spacing:1.291182px;}
.ws4b{word-spacing:1.291187px;}
.ws63{word-spacing:1.344987px;}
.ws100{word-spacing:1.386825px;}
.wsa1{word-spacing:1.398786px;}
.ws126{word-spacing:1.434647px;}
.wseb{word-spacing:1.452586px;}
.ws64{word-spacing:1.506385px;}
.ws6e{word-spacing:1.613984px;}
.ws6{word-spacing:1.667784px;}
.ws1a{word-spacing:1.721583px;}
.ws57{word-spacing:1.775383px;}
.wsa{word-spacing:1.829182px;}
.ws9a{word-spacing:1.882982px;}
.ws67{word-spacing:1.936781px;}
.ws22{word-spacing:1.990581px;}
.ws3e{word-spacing:2.044380px;}
.ws134{word-spacing:2.056327px;}
.ws3c{word-spacing:2.098180px;}
.wsfd{word-spacing:2.151970px;}
.ws88{word-spacing:2.151979px;}
.ws6a{word-spacing:2.205779px;}
.ws135{word-spacing:2.247613px;}
.ws5a{word-spacing:2.259578px;}
.ws133{word-spacing:2.343256px;}
.ws95{word-spacing:2.367177px;}
.ws13a{word-spacing:2.438899px;}
.ws60{word-spacing:2.474776px;}
.wsf7{word-spacing:2.486721px;}
.wsb4{word-spacing:2.518457px;}
.wsb5{word-spacing:2.528575px;}
.ws140{word-spacing:2.534542px;}
.wse6{word-spacing:2.582375px;}
.ws93{word-spacing:2.636174px;}
.wsb8{word-spacing:2.689974px;}
.ws35{word-spacing:2.743773px;}
.ws46{word-spacing:2.797573px;}
.ws137{word-spacing:2.869293px;}
.wsad{word-spacing:2.905172px;}
.ws8a{word-spacing:2.958971px;}
.ws10c{word-spacing:2.964936px;}
.wsfe{word-spacing:3.060580px;}
.wsc4{word-spacing:3.066570px;}
.ws128{word-spacing:3.108401px;}
.ws40{word-spacing:3.120370px;}
.ws51{word-spacing:3.174169px;}
.ws41{word-spacing:3.227969px;}
.wsbd{word-spacing:3.281768px;}
.ws121{word-spacing:3.299687px;}
.ws6c{word-spacing:3.335568px;}
.wsb0{word-spacing:3.389367px;}
.ws2a{word-spacing:3.443166px;}
.ws11d{word-spacing:3.490974px;}
.ws50{word-spacing:3.496966px;}
.wsa4{word-spacing:3.550765px;}
.wsed{word-spacing:3.604565px;}
.ws127{word-spacing:3.634438px;}
.wse{word-spacing:3.712164px;}
.ws13b{word-spacing:3.777903px;}
.ws34{word-spacing:3.819763px;}
.ws45{word-spacing:3.873562px;}
.ws11a{word-spacing:3.921368px;}
.ws66{word-spacing:3.927362px;}
.ws110{word-spacing:3.969189px;}
.wsb1{word-spacing:3.981161px;}
.ws97{word-spacing:4.034961px;}
.ws96{word-spacing:4.034989px;}
.ws150{word-spacing:4.112654px;}
.ws1c{word-spacing:4.142560px;}
.wsb6{word-spacing:4.196359px;}
.ws122{word-spacing:4.208297px;}
.wsa7{word-spacing:4.250159px;}
.ws138{word-spacing:4.256119px;}
.ws7b{word-spacing:4.303958px;}
.ws98{word-spacing:4.411557px;}
.ws14c{word-spacing:4.447405px;}
.ws79{word-spacing:4.465356px;}
.ws102{word-spacing:4.495226px;}
.ws86{word-spacing:4.519156px;}
.ws9{word-spacing:4.572955px;}
.ws36{word-spacing:4.626755px;}
.wsb9{word-spacing:4.680554px;}
.ws131{word-spacing:4.686513px;}
.wsc6{word-spacing:4.734354px;}
.wsff{word-spacing:4.782156px;}
.ws4f{word-spacing:4.788153px;}
.wsc8{word-spacing:4.841953px;}
.ws144{word-spacing:4.877799px;}
.ws129{word-spacing:4.925620px;}
.ws10f{word-spacing:4.930494px;}
.wsc5{word-spacing:4.949552px;}
.wsf0{word-spacing:5.057151px;}
.wsfa{word-spacing:5.069085px;}
.ws31{word-spacing:5.110950px;}
.ws26{word-spacing:5.164750px;}
.ws8f{word-spacing:5.272349px;}
.ws139{word-spacing:5.308193px;}
.ws9d{word-spacing:5.326148px;}
.wsbb{word-spacing:5.379948px;}
.ws13e{word-spacing:5.403836px;}
.wsb2{word-spacing:5.433747px;}
.ws3d{word-spacing:5.487547px;}
.ws12{word-spacing:5.541346px;}
.ws116{word-spacing:5.595122px;}
.ws87{word-spacing:5.595145px;}
.ws10e{word-spacing:5.642944px;}
.wsbe{word-spacing:5.648945px;}
.wse9{word-spacing:5.702744px;}
.ws39{word-spacing:5.756544px;}
.ws58{word-spacing:5.810343px;}
.ws10{word-spacing:5.864143px;}
.wsf6{word-spacing:5.882051px;}
.ws3a{word-spacing:5.917942px;}
.wsca{word-spacing:5.929873px;}
.ws37{word-spacing:5.971742px;}
.ws109{word-spacing:5.977695px;}
.ws11e{word-spacing:6.025516px;}
.ws7a{word-spacing:6.025541px;}
.ws11f{word-spacing:6.073338px;}
.wsea{word-spacing:6.186940px;}
.ws8{word-spacing:6.240739px;}
.ws7{word-spacing:6.294539px;}
.ws114{word-spacing:6.360267px;}
.wsbf{word-spacing:6.402138px;}
.ws94{word-spacing:6.455937px;}
.ws62{word-spacing:6.509737px;}
.ws24{word-spacing:6.563536px;}
.ws69{word-spacing:6.617336px;}
.ws4d{word-spacing:6.671135px;}
.ws12a{word-spacing:6.695018px;}
.ws47{word-spacing:6.724934px;}
.ws145{word-spacing:6.742839px;}
.ws8c{word-spacing:6.778734px;}
.ws13f{word-spacing:6.790661px;}
.ws2f{word-spacing:6.832533px;}
.ws43{word-spacing:6.886333px;}
.ws27{word-spacing:6.940132px;}
.ws12e{word-spacing:6.981947px;}
.ws17{word-spacing:6.993932px;}
.wsa8{word-spacing:7.047731px;}
.ws4c{word-spacing:7.101531px;}
.ws9e{word-spacing:7.209130px;}
.ws3b{word-spacing:7.262929px;}
.ws1d{word-spacing:7.316729px;}
.ws6d{word-spacing:7.370528px;}
.ws89{word-spacing:7.585726px;}
.ws48{word-spacing:7.693325px;}
.wsab{word-spacing:7.800924px;}
.wsa2{word-spacing:7.908523px;}
.ws9b{word-spacing:7.962322px;}
.ws25{word-spacing:8.016122px;}
.ws141{word-spacing:8.034021px;}
.ws2d{word-spacing:8.069921px;}
.wsc7{word-spacing:8.123721px;}
.ws92{word-spacing:8.231320px;}
.ws118{word-spacing:8.464415px;}
.ws21{word-spacing:8.554117px;}
.wsec{word-spacing:8.661716px;}
.ws68{word-spacing:8.876914px;}
.ws124{word-spacing:8.894809px;}
.wsbc{word-spacing:8.930713px;}
.ws14{word-spacing:9.253510px;}
.wsc3{word-spacing:9.307309px;}
.ws2c{word-spacing:9.845304px;}
.wse8{word-spacing:10.060502px;}
.wsf1{word-spacing:10.168101px;}
.ws9f{word-spacing:10.221900px;}
.wsa6{word-spacing:11.082692px;}
.ws15{word-spacing:11.566887px;}
.ws115{word-spacing:11.620638px;}
.ws10d{word-spacing:11.716281px;}
.ws136{word-spacing:11.895724px;}
.ws9c{word-spacing:11.997283px;}
.ws70{word-spacing:12.167400px;}
.wsc0{word-spacing:12.427679px;}
.ws1b{word-spacing:12.858075px;}
.wscb{word-spacing:13.396914px;}
.ws73{word-spacing:14.275495px;}
.wsf5{word-spacing:14.848655px;}
.ws123{word-spacing:14.920326px;}
.ws59{word-spacing:15.332851px;}
.ws5{word-spacing:16.839236px;}
.ws148{word-spacing:17.933084px;}
.ws53{word-spacing:19.845499px;}
.ws52{word-spacing:19.905275px;}
.ws8d{word-spacing:20.203007px;}
.wsba{word-spacing:21.465991px;}
.ws149{word-spacing:22.715239px;}
.wsf4{word-spacing:23.456571px;}
.wsf3{word-spacing:24.801558px;}
.ws16{word-spacing:25.106422px;}
.ws14f{word-spacing:27.593038px;}
.ws14e{word-spacing:28.310361px;}
.wsf2{word-spacing:28.890319px;}
.ws4{word-spacing:32.223246px;}
.wsce{word-spacing:47.728503px;}
.wscc{word-spacing:58.264832px;}
.wse1{word-spacing:64.064481px;}
.wsde{word-spacing:64.070481px;}
.wsd9{word-spacing:64.075176px;}
.wscf{word-spacing:65.624512px;}
.wsd3{word-spacing:65.635361px;}
.wse2{word-spacing:76.933251px;}
.wsd0{word-spacing:77.516750px;}
.wse3{word-spacing:77.525045px;}
.wsd2{word-spacing:78.493435px;}
.wsd4{word-spacing:78.547235px;}
.wsdf{word-spacing:90.397808px;}
.wsd1{word-spacing:90.399008px;}
.wsdc{word-spacing:91.943304px;}
.wse0{word-spacing:91.959039px;}
.wsd7{word-spacing:102.063400px;}
.wsdb{word-spacing:103.851277px;}
.wscd{word-spacing:121.840501px;}
.wsdd{word-spacing:140.201434px;}
.wsda{word-spacing:160.914232px;}
.wsd5{word-spacing:160.930418px;}
.wsd8{word-spacing:162.592452px;}
.wsd6{word-spacing:162.607418px;}
.ws7d{word-spacing:250.234476px;}
.ws82{word-spacing:269.696773px;}
.ws83{word-spacing:285.460019px;}
.ws7c{word-spacing:326.132423px;}
.ws7e{word-spacing:334.133770px;}
.ws84{word-spacing:365.352241px;}
.ws7f{word-spacing:402.850475px;}
.ws80{word-spacing:414.847759px;}
.ws81{word-spacing:479.030533px;}
.ws54{word-spacing:561.630437px;}
._3e{margin-left:-7.854723px;}
._5{margin-left:-6.320793px;}
._0{margin-left:-5.164735px;}
._2{margin-left:-3.873551px;}
._1{margin-left:-2.151973px;}
._8{margin-left:-1.147751px;}
._16{width:2.151973px;}
._6{width:4.174054px;}
._3{width:5.859228px;}
._41{width:7.029769px;}
._42{width:10.460853px;}
._40{width:11.656397px;}
._12{width:13.127066px;}
._19{width:14.714105px;}
._b{width:16.641989px;}
._a{width:18.668412px;}
._9{width:20.766598px;}
._7{width:22.237117px;}
._d{width:23.304448px;}
._1a{width:24.693947px;}
._10{width:25.716149px;}
._15{width:27.114930px;}
._18{width:28.258328px;}
._1d{width:29.374514px;}
._14{width:30.396704px;}
._1e{width:31.418888px;}
._4{width:32.453065px;}
._17{width:33.570873px;}
._c{width:34.862054px;}
._11{width:37.014039px;}
._e{width:38.789422px;}
._1b{width:40.026804px;}
._f{width:41.533189px;}
._13{width:43.039581px;}
._43{width:48.000777px;}
._1c{width:49.136877px;}
._20{width:54.337465px;}
._1f{width:59.141580px;}
._44{width:69.592443px;}
._21{width:74.121882px;}
._3d{width:77.535893px;}
._36{width:79.074381px;}
._25{width:83.729940px;}
._3f{width:86.993753px;}
._2a{width:90.974914px;}
._2c{width:92.965494px;}
._2b{width:103.832988px;}
._2f{width:105.380837px;}
._39{width:106.415363px;}
._22{width:110.697708px;}
._30{width:140.255234px;}
._26{width:142.084416px;}
._27{width:147.518163px;}
._3b{width:149.164999px;}
._2d{width:160.914232px;}
._37{width:163.151221px;}
._31{width:174.430237px;}
._29{width:176.053543px;}
._23{width:181.411833px;}
._3a{width:187.168377px;}
._28{width:200.618246px;}
._24{width:209.279961px;}
._2e{width:214.068115px;}
._38{width:217.926777px;}
._35{width:240.331293px;}
._3c{width:243.320975px;}
._34{width:450.796257px;}
._33{width:452.707988px;}
._32{width:478.125984px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.866317px;}
.fs2{font-size:47.821556px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:53.799476px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.732635px;}
.fs0{font-size:86.078921px;}
.y0{bottom:0.000000px;}
.y64{bottom:51.006000px;}
.y37{bottom:152.626552px;}
.y12f{bottom:152.628052px;}
.yf3{bottom:156.846137px;}
.y19b{bottom:166.114822px;}
.y36{bottom:168.243365px;}
.y12e{bottom:170.334407px;}
.y19a{bottom:179.601592px;}
.yf2{bottom:182.421648px;}
.y35{bottom:183.860177px;}
.y12d{bottom:184.713694px;}
.y199{bottom:193.088362px;}
.yf1{bottom:198.038461px;}
.y34{bottom:199.476989px;}
.y198{bottom:210.862217px;}
.yf0{bottom:213.655273px;}
.y12c{bottom:214.367787px;}
.y33{bottom:215.093802px;}
.y197{bottom:224.348987px;}
.yef{bottom:229.272085px;}
.y12b{bottom:229.983099px;}
.y32{bottom:230.710614px;}
.y196{bottom:237.835756px;}
.y61{bottom:239.958299px;}
.yee{bottom:244.888897px;}
.y12a{bottom:245.599912px;}
.y31{bottom:246.327426px;}
.y195{bottom:255.609612px;}
.yb7{bottom:259.203684px;}
.y60{bottom:259.833696px;}
.yed{bottom:260.505710px;}
.y129{bottom:261.216724px;}
.y30{bottom:261.944239px;}
.y194{bottom:269.097882px;}
.yb6{bottom:274.820496px;}
.yec{bottom:276.122522px;}
.y128{bottom:276.833536px;}
.y2f{bottom:277.561051px;}
.y193{bottom:282.584651px;}
.y83{bottom:289.067781px;}
.yb5{bottom:290.437308px;}
.y127{bottom:292.450349px;}
.yeb{bottom:292.513350px;}
.y15c{bottom:293.176363px;}
.y2e{bottom:293.177863px;}
.y5f{bottom:296.765935px;}
.y192{bottom:300.358507px;}
.yb4{bottom:306.054121px;}
.y126{bottom:308.067161px;}
.yea{bottom:308.130162px;}
.y15b{bottom:308.793175px;}
.y2d{bottom:308.794675px;}
.y5e{bottom:312.382747px;}
.y191{bottom:313.845276px;}
.yb3{bottom:321.670933px;}
.y125{bottom:323.683973px;}
.ye9{bottom:323.746975px;}
.y2c{bottom:324.409988px;}
.y82{bottom:324.411488px;}
.y1d0{bottom:324.931998px;}
.y190{bottom:327.332046px;}
.y5d{bottom:327.998060px;}
.yb2{bottom:337.287745px;}
.y1cf{bottom:338.418768px;}
.y124{bottom:339.300786px;}
.ye8{bottom:339.363787px;}
.y2b{bottom:340.026800px;}
.y5c{bottom:343.614872px;}
.y18f{bottom:345.105902px;}
.y1ce{bottom:351.905538px;}
.yb1{bottom:352.904558px;}
.y123{bottom:354.917598px;}
.ye7{bottom:354.980599px;}
.y2a{bottom:355.643612px;}
.y18e{bottom:358.592671px;}
.y5b{bottom:359.231684px;}
.yb0{bottom:368.521370px;}
.y122{bottom:370.534410px;}
.ye6{bottom:370.597411px;}
.y29{bottom:371.260425px;}
.y1cd{bottom:371.369927px;}
.y18d{bottom:372.079441px;}
.y5a{bottom:374.848496px;}
.yaf{bottom:384.138182px;}
.y1cc{bottom:384.858197px;}
.y18c{bottom:385.567711px;}
.y121{bottom:386.151222px;}
.ye5{bottom:386.214224px;}
.y28{bottom:386.877237px;}
.y59{bottom:390.465309px;}
.y81{bottom:391.614332px;}
.y1cb{bottom:398.344966px;}
.yae{bottom:399.754995px;}
.y120{bottom:401.768035px;}
.ye4{bottom:401.831036px;}
.y27{bottom:402.494049px;}
.y18b{bottom:403.340066px;}
.y80{bottom:407.231144px;}
.y58{bottom:407.522150px;}
.yad{bottom:415.371807px;}
.y18a{bottom:416.828336px;}
.y11f{bottom:417.384847px;}
.ye3{bottom:417.447848px;}
.y1ca{bottom:417.809356px;}
.y155{bottom:418.110862px;}
.y26{bottom:418.242864px;}
.y7f{bottom:422.847956px;}
.y57{bottom:423.138962px;}
.y189{bottom:430.315106px;}
.yac{bottom:430.988619px;}
.y1c9{bottom:431.296125px;}
.y11e{bottom:433.001659px;}
.ye2{bottom:433.064661px;}
.y154{bottom:433.727674px;}
.y25{bottom:433.859677px;}
.y7e{bottom:438.464769px;}
.y56{bottom:438.755774px;}
.y188{bottom:443.801875px;}
.yab{bottom:446.605431px;}
.y11d{bottom:448.618472px;}
.y153{bottom:449.344486px;}
.y24{bottom:449.474989px;}
.y1c8{bottom:450.762015px;}
.y7d{bottom:454.081581px;}
.y55{bottom:454.371087px;}
.ye1{bottom:457.264645px;}
.y187{bottom:461.575731px;}
.yaa{bottom:462.222244px;}
.y15a{bottom:463.999779px;}
.y11c{bottom:464.233784px;}
.y1c7{bottom:464.248784px;}
.y152{bottom:464.961299px;}
.y23{bottom:465.091801px;}
.y7c{bottom:469.698393px;}
.y54{bottom:469.987899px;}
.y186{bottom:475.062501px;}
.y1c6{bottom:477.735554px;}
.ya9{bottom:477.837556px;}
.y11b{bottom:479.850596px;}
.y22{bottom:480.708613px;}
.ye0{bottom:481.464629px;}
.y53{bottom:485.604711px;}
.y185{bottom:488.549270px;}
.y151{bottom:490.722814px;}
.ya8{bottom:493.454368px;}
.y7b{bottom:494.870397px;}
.y11a{bottom:495.467409px;}
.y21{bottom:496.325426px;}
.y1c5{bottom:497.201443px;}
.y52{bottom:501.221524px;}
.y184{bottom:506.323126px;}
.y150{bottom:506.338126px;}
.ya7{bottom:509.071181px;}
.y1c4{bottom:510.688213px;}
.y119{bottom:511.084221px;}
.y20{bottom:511.942238px;}
.y51{bottom:516.838336px;}
.ydf{bottom:517.730854px;}
.y183{bottom:519.809895px;}
.y14f{bottom:521.954938px;}
.y1c3{bottom:524.174983px;}
.ya6{bottom:524.687993px;}
.y118{bottom:526.701033px;}
.y1f{bottom:527.559050px;}
.y7a{bottom:527.851556px;}
.y50{bottom:532.455148px;}
.y182{bottom:533.298165px;}
.yde{bottom:533.347666px;}
.y14e{bottom:537.571751px;}
.ya5{bottom:540.304805px;}
.y117{bottom:542.317846px;}
.y1e{bottom:543.175863px;}
.y79{bottom:543.468369px;}
.y1c2{bottom:543.639372px;}
.y4f{bottom:548.071961px;}
.ydd{bottom:548.964478px;}
.y181{bottom:551.070521px;}
.y14d{bottom:553.188563px;}
.ya4{bottom:555.921618px;}
.y1c1{bottom:557.127642px;}
.y116{bottom:557.934658px;}
.y1d{bottom:558.792675px;}
.y78{bottom:559.085181px;}
.y4e{bottom:563.688773px;}
.y180{bottom:564.558790px;}
.ydc{bottom:564.581291px;}
.y14c{bottom:568.805375px;}
.y1c0{bottom:570.614411px;}
.ya3{bottom:571.538430px;}
.y1c{bottom:574.409487px;}
.y77{bottom:574.701993px;}
.y115{bottom:575.345506px;}
.y17f{bottom:578.045560px;}
.y4d{bottom:579.305585px;}
.ydb{bottom:580.198103px;}
.y14b{bottom:584.422188px;}
.ya2{bottom:587.155242px;}
.y1bf{bottom:590.078801px;}
.y76{bottom:590.318805px;}
.y114{bottom:590.962318px;}
.y17e{bottom:591.532330px;}
.y4c{bottom:594.922397px;}
.yda{bottom:595.814915px;}
.y1b{bottom:597.965958px;}
.y14a{bottom:600.039000px;}
.ya1{bottom:602.772054px;}
.y1be{bottom:603.565570px;}
.y75{bottom:605.935618px;}
.y113{bottom:606.579131px;}
.y17d{bottom:609.306185px;}
.y4b{bottom:610.539210px;}
.yd9{bottom:611.431728px;}
.y149{bottom:615.655812px;}
.y1bd{bottom:617.053840px;}
.ya0{bottom:618.388867px;}
.y74{bottom:621.552430px;}
.y112{bottom:622.195943px;}
.y17c{bottom:622.792955px;}
.y4a{bottom:626.156022px;}
.yd8{bottom:627.048540px;}
.y1bc{bottom:630.540610px;}
.y148{bottom:631.272624px;}
.y1a{bottom:633.590171px;}
.y9f{bottom:634.005679px;}
.y17b{bottom:636.279725px;}
.y73{bottom:637.169242px;}
.y49{bottom:641.772834px;}
.yd7{bottom:642.665352px;}
.y147{bottom:646.889437px;}
.y111{bottom:647.414447px;}
.y19{bottom:649.205483px;}
.y9e{bottom:649.622491px;}
.y1bb{bottom:650.004999px;}
.y72{bottom:652.786055px;}
.y17a{bottom:654.053580px;}
.y48{bottom:657.389647px;}
.yd6{bottom:658.282165px;}
.y146{bottom:662.506249px;}
.y1ba{bottom:663.491769px;}
.y18{bottom:664.954298px;}
.y9d{bottom:665.239304px;}
.y179{bottom:667.541850px;}
.y71{bottom:668.402867px;}
.y47{bottom:673.004959px;}
.yd5{bottom:673.898977px;}
.y1b9{bottom:676.980038px;}
.y159{bottom:678.121561px;}
.y145{bottom:678.123061px;}
.y110{bottom:680.442108px;}
.y17{bottom:680.571110px;}
.y9c{bottom:680.856116px;}
.y70{bottom:684.019679px;}
.y178{bottom:685.314205px;}
.y46{bottom:688.621771px;}
.yd4{bottom:689.514289px;}
.y1b8{bottom:690.466808px;}
.y158{bottom:693.738374px;}
.y144{bottom:693.739874px;}
.y10f{bottom:696.058920px;}
.y16{bottom:696.187923px;}
.y9b{bottom:696.471428px;}
.y177{bottom:698.802475px;}
.y6f{bottom:699.634992px;}
.y45{bottom:704.238584px;}
.yd3{bottom:705.131101px;}
.y157{bottom:709.355186px;}
.y143{bottom:709.356686px;}
.y1b7{bottom:709.931197px;}
.y10e{bottom:711.675732px;}
.y15{bottom:711.804735px;}
.y9a{bottom:712.088241px;}
.y6e{bottom:715.251804px;}
.y176{bottom:716.574830px;}
.y44{bottom:719.855396px;}
.yd2{bottom:720.747914px;}
.y1b6{bottom:723.417967px;}
.y156{bottom:724.971998px;}
.y142{bottom:724.973498px;}
.y10d{bottom:727.292545px;}
.y14{bottom:727.421547px;}
.y99{bottom:727.705053px;}
.y175{bottom:730.063100px;}
.y6d{bottom:730.868616px;}
.y43{bottom:735.472208px;}
.yd1{bottom:736.364726px;}
.y1b5{bottom:736.906237px;}
.y141{bottom:740.588811px;}
.y10c{bottom:742.909357px;}
.y13{bottom:743.036860px;}
.y98{bottom:743.321865px;}
.y174{bottom:743.549870px;}
.y6c{bottom:746.485428px;}
.y42{bottom:751.089021px;}
.yd0{bottom:751.981538px;}
.y1b4{bottom:756.370626px;}
.y10b{bottom:758.526169px;}
.y12{bottom:758.653672px;}
.y97{bottom:758.938678px;}
.y173{bottom:761.323725px;}
.y6b{bottom:762.102241px;}
.y41{bottom:766.705833px;}
.ycf{bottom:767.598351px;}
.y1b3{bottom:769.857396px;}
.y10a{bottom:774.142982px;}
.y11{bottom:774.270484px;}
.y96{bottom:774.555490px;}
.y172{bottom:774.810495px;}
.y6a{bottom:777.719053px;}
.y40{bottom:782.322645px;}
.yce{bottom:783.215163px;}
.y1b2{bottom:783.344166px;}
.y171{bottom:788.297265px;}
.y109{bottom:789.759794px;}
.y10{bottom:789.887296px;}
.y95{bottom:790.172302px;}
.y69{bottom:793.335865px;}
.y140{bottom:793.875876px;}
.y1b1{bottom:796.832435px;}
.y3f{bottom:797.939457px;}
.ycd{bottom:798.831975px;}
.y170{bottom:801.784034px;}
.yf{bottom:805.504109px;}
.y94{bottom:805.789114px;}
.y108{bottom:807.170642px;}
.y68{bottom:808.952678px;}
.y13f{bottom:809.492688px;}
.y3e{bottom:814.994799px;}
.ycc{bottom:815.222803px;}
.y1b0{bottom:816.296825px;}
.y16f{bottom:819.557890px;}
.ye{bottom:821.120921px;}
.y93{bottom:821.405927px;}
.y107{bottom:822.787454px;}
.y13e{bottom:825.109501px;}
.y1af{bottom:829.783594px;}
.y3d{bottom:830.611611px;}
.ycb{bottom:830.839615px;}
.y16e{bottom:833.044659px;}
.y67{bottom:834.126181px;}
.yd{bottom:836.737733px;}
.y106{bottom:838.404267px;}
.y13d{bottom:840.726313px;}
.y1ae{bottom:843.271864px;}
.y3c{bottom:846.228423px;}
.yca{bottom:846.456428px;}
.y16d{bottom:846.532929px;}
.yc{bottom:852.354546px;}
.y105{bottom:854.021079px;}
.y1ad{bottom:858.281164px;}
.y16c{bottom:860.019699px;}
.y3b{bottom:861.845235px;}
.yc9{bottom:862.073240px;}
.y13c{bottom:863.846275px;}
.yb{bottom:867.971358px;}
.y104{bottom:869.637891px;}
.y3a{bottom:877.462048px;}
.yc8{bottom:877.690052px;}
.y1ac{bottom:877.745553px;}
.y16b{bottom:877.793554px;}
.y13b{bottom:879.463088px;}
.ya{bottom:883.588170px;}
.y103{bottom:885.254704px;}
.y66{bottom:887.138741px;}
.y139{bottom:887.270744px;}
.y1ab{bottom:891.232323px;}
.y16a{bottom:891.280324px;}
.y39{bottom:893.078860px;}
.yc7{bottom:893.306865px;}
.y92{bottom:894.469388px;}
.y13a{bottom:895.079900px;}
.y9{bottom:899.204983px;}
.y102{bottom:900.871516px;}
.y65{bottom:902.755554px;}
.y1aa{bottom:904.720593px;}
.y169{bottom:904.767094px;}
.y38{bottom:908.695672px;}
.yc6{bottom:908.923677px;}
.y91{bottom:910.086200px;}
.y138{bottom:910.696712px;}
.y101{bottom:916.486828px;}
.y168{bottom:922.540949px;}
.y1a9{bottom:924.184982px;}
.y8{bottom:924.312485px;}
.yc5{bottom:924.540489px;}
.y90{bottom:925.703012px;}
.y100{bottom:932.103640px;}
.y137{bottom:933.816675px;}
.y167{bottom:936.027719px;}
.y1a8{bottom:937.671752px;}
.yc4{bottom:940.157302px;}
.y8f{bottom:941.319825px;}
.yff{bottom:947.720453px;}
.y136{bottom:949.433487px;}
.y166{bottom:949.514489px;}
.y1a7{bottom:951.158522px;}
.yc3{bottom:955.774114px;}
.y8e{bottom:956.936637px;}
.y133{bottom:957.241143px;}
.y165{bottom:963.002758px;}
.yfe{bottom:963.337265px;}
.y135{bottom:965.050299px;}
.y7{bottom:965.291804px;}
.y1a6{bottom:970.624411px;}
.yc2{bottom:971.390926px;}
.y8d{bottom:972.553449px;}
.yfd{bottom:978.954077px;}
.y134{bottom:980.665612px;}
.y1a5{bottom:984.111181px;}
.y164{bottom:984.297184px;}
.yc1{bottom:987.007738px;}
.y8c{bottom:988.168762px;}
.y6{bottom:991.899336px;}
.yfc{bottom:994.570890px;}
.y1a4{bottom:997.597950px;}
.yc0{bottom:1002.624551px;}
.y8b{bottom:1003.785574px;}
.y5{bottom:1005.267604px;}
.yfb{bottom:1010.187702px;}
.y4{bottom:1011.776234px;}
.y1a3{bottom:1017.062339px;}
.ybf{bottom:1018.241363px;}
.y8a{bottom:1019.402386px;}
.y163{bottom:1019.790894px;}
.yfa{bottom:1025.804514px;}
.y132{bottom:1027.211542px;}
.y1a2{bottom:1030.550609px;}
.ybe{bottom:1034.632191px;}
.y89{bottom:1035.019199px;}
.y162{bottom:1035.407706px;}
.yf9{bottom:1041.421327px;}
.y3{bottom:1041.581830px;}
.y1a1{bottom:1044.037379px;}
.ybd{bottom:1050.249003px;}
.y88{bottom:1050.636011px;}
.y161{bottom:1051.023019px;}
.yf8{bottom:1058.832175px;}
.y1a0{bottom:1063.501768px;}
.ybc{bottom:1065.865815px;}
.y160{bottom:1066.639831px;}
.y87{bottom:1073.755973px;}
.yf7{bottom:1074.448987px;}
.y19f{bottom:1076.988538px;}
.ybb{bottom:1081.482628px;}
.y131{bottom:1081.565129px;}
.y15f{bottom:1082.256643px;}
.yf6{bottom:1090.065799px;}
.y19e{bottom:1090.476808px;}
.yba{bottom:1097.099440px;}
.y15e{bottom:1097.873456px;}
.y2{bottom:1102.256543px;}
.yf5{bottom:1105.682612px;}
.y86{bottom:1109.695192px;}
.y19d{bottom:1109.941197px;}
.yb9{bottom:1112.716252px;}
.y15d{bottom:1113.490268px;}
.yf4{bottom:1121.299424px;}
.y19c{bottom:1123.427967px;}
.y85{bottom:1125.312004px;}
.y1{bottom:1127.811054px;}
.yb8{bottom:1136.916236px;}
.y84{bottom:1140.927317px;}
.y130{bottom:1140.928817px;}
.y63{bottom:1189.870500px;}
.y62{bottom:1207.803000px;}
.h16{height:24.676026px;}
.h6{height:31.801335px;}
.h18{height:32.901231px;}
.h1e{height:33.135235px;}
.h1b{height:33.141236px;}
.hf{height:36.745042px;}
.hb{height:37.014039px;}
.hc{height:37.229237px;}
.h14{height:37.336836px;}
.h19{height:37.605834px;}
.h10{height:37.928631px;}
.h9{height:40.349607px;}
.hd{height:42.201574px;}
.h1c{height:43.323439px;}
.h1d{height:43.989453px;}
.he{height:44.312764px;}
.h17{height:47.064221px;}
.h15{height:47.530483px;}
.h3{height:48.993389px;}
.h8{height:49.352053px;}
.ha{height:49.638983px;}
.h7{height:49.712060px;}
.h11{height:50.444009px;}
.h13{height:50.618529px;}
.h5{height:57.835856px;}
.h2{height:59.566614px;}
.h4{height:65.421718px;}
.h12{height:67.058858px;}
.h1a{height:68.459862px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:85.039500px;}
.xd{left:86.384820px;}
.x15{left:87.655384px;}
.xa{left:92.407621px;}
.x7{left:96.907846px;}
.x16{left:99.835993px;}
.x3{left:102.177610px;}
.xe{left:108.801941px;}
.x1{left:110.686035px;}
.x2a{left:113.776190px;}
.x1e{left:122.367119px;}
.x24{left:123.483175px;}
.x20{left:124.983250px;}
.x22{left:128.338918px;}
.x23{left:129.838993px;}
.x26{left:157.929397px;}
.x8{left:161.789090px;}
.x25{left:163.532177px;}
.x1d{left:164.580730px;}
.x28{left:170.239013px;}
.x2b{left:192.429622px;}
.xb{left:195.927797px;}
.x4{left:200.668034px;}
.x29{left:202.708136px;}
.x21{left:205.448773px;}
.xc{left:223.107656px;}
.x17{left:226.895345px;}
.x5{left:242.506626px;}
.x2c{left:246.643833px;}
.x18{left:258.902445px;}
.x2{left:276.810341px;}
.x1f{left:287.841892px;}
.x2d{left:311.336067px;}
.x19{left:321.758588px;}
.x6{left:324.836742px;}
.x14{left:430.186500px;}
.xf{left:469.080954px;}
.x1c{left:470.351517px;}
.x1b{left:482.532126px;}
.x11{left:484.626231px;}
.x10{left:491.498075px;}
.x2e{left:496.472323px;}
.x30{left:508.078404px;}
.x36{left:521.177059px;}
.x33{left:522.926146px;}
.x35{left:527.387369px;}
.x31{left:548.584929px;}
.x1a{left:556.622331px;}
.x12{left:567.182859px;}
.x27{left:580.724036px;}
.x2f{left:594.383719px;}
.x32{left:663.385669px;}
.x9{left:731.984098px;}
.x34{left:769.551977px;}
@media print{
.v3{vertical-align:-23.141796pt;}
.va{vertical-align:-14.997633pt;}
.v4{vertical-align:-5.317440pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.944179pt;}
.vb{vertical-align:9.856197pt;}
.v8{vertical-align:12.618919pt;}
.v2{vertical-align:14.602959pt;}
.v9{vertical-align:20.315073pt;}
.v1{vertical-align:23.141796pt;}
.v7{vertical-align:27.232545pt;}
.v5{vertical-align:35.867384pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000891pt;}
.lsb{letter-spacing:0.002111pt;}
.lse{letter-spacing:0.002606pt;}
.lsc{letter-spacing:0.003386pt;}
.ls1a{letter-spacing:2.651786pt;}
.ls0{letter-spacing:2.653311pt;}
.ls1d{letter-spacing:2.656526pt;}
.ls1e{letter-spacing:2.657120pt;}
.ls1{letter-spacing:2.658644pt;}
.ls13{letter-spacing:3.800947pt;}
.lsd{letter-spacing:6.087566pt;}
.ls6{letter-spacing:6.825451pt;}
.ls4{letter-spacing:9.418321pt;}
.lsf{letter-spacing:10.200572pt;}
.ls10{letter-spacing:10.992247pt;}
.ls1c{letter-spacing:12.630081pt;}
.ls1b{letter-spacing:12.630477pt;}
.ls5{letter-spacing:13.647739pt;}
.lsa{letter-spacing:13.654992pt;}
.ls19{letter-spacing:14.604025pt;}
.ls12{letter-spacing:14.615737pt;}
.ls14{letter-spacing:15.518515pt;}
.ls11{letter-spacing:15.730426pt;}
.ls9{letter-spacing:16.309021pt;}
.ls18{letter-spacing:16.332671pt;}
.ls17{letter-spacing:17.426026pt;}
.ls16{letter-spacing:18.154465pt;}
.ls7{letter-spacing:24.580473pt;}
.ls8{letter-spacing:26.569918pt;}
.ls15{letter-spacing:28.926783pt;}
.ls22{letter-spacing:90.771409pt;}
.ls20{letter-spacing:91.576551pt;}
.ls21{letter-spacing:125.481229pt;}
.ls1f{letter-spacing:125.486770pt;}
.ws3{word-spacing:-49.151201pt;}
.ws77{word-spacing:-32.064488pt;}
.ws1{word-spacing:-15.940585pt;}
.ws6b{word-spacing:-11.955439pt;}
.wsaf{word-spacing:-10.627013pt;}
.wsd{word-spacing:-2.869305pt;}
.ws99{word-spacing:-2.773662pt;}
.ws3f{word-spacing:-2.725840pt;}
.wsc{word-spacing:-2.534553pt;}
.wsc1{word-spacing:-2.486731pt;}
.ws130{word-spacing:-2.422959pt;}
.ws1e{word-spacing:-2.295444pt;}
.ws12d{word-spacing:-2.295435pt;}
.wsa3{word-spacing:-2.199801pt;}
.wsa0{word-spacing:-2.151979pt;}
.ws11{word-spacing:-2.104157pt;}
.ws5e{word-spacing:-2.056336pt;}
.ws5c{word-spacing:-2.008514pt;}
.ws6f{word-spacing:-1.912870pt;}
.ws29{word-spacing:-1.865048pt;}
.ws12c{word-spacing:-1.785338pt;}
.ws1f{word-spacing:-1.769405pt;}
.ws74{word-spacing:-1.760470pt;}
.ws85{word-spacing:-1.721583pt;}
.ws28{word-spacing:-1.625940pt;}
.ws72{word-spacing:-1.530296pt;}
.ws56{word-spacing:-1.482474pt;}
.wse5{word-spacing:-1.434653pt;}
.ws14a{word-spacing:-1.402766pt;}
.ws65{word-spacing:-1.386831pt;}
.ws8e{word-spacing:-1.370165pt;}
.ws112{word-spacing:-1.360258pt;}
.wse4{word-spacing:-1.339009pt;}
.ws38{word-spacing:-1.291187pt;}
.ws10a{word-spacing:-1.280476pt;}
.wsf9{word-spacing:-1.275242pt;}
.ws13c{word-spacing:-1.273799pt;}
.ws5b{word-spacing:-1.243366pt;}
.ws13d{word-spacing:-1.232733pt;}
.ws78{word-spacing:-1.195544pt;}
.wsa9{word-spacing:-1.147722pt;}
.ws10b{word-spacing:-1.020193pt;}
.ws33{word-spacing:-1.004257pt;}
.ws101{word-spacing:-0.977685pt;}
.wsfc{word-spacing:-0.935177pt;}
.wsb3{word-spacing:-0.908613pt;}
.ws20{word-spacing:-0.860792pt;}
.wsee{word-spacing:-0.812970pt;}
.ws146{word-spacing:-0.722637pt;}
.ws2e{word-spacing:-0.717326pt;}
.ws147{word-spacing:-0.680129pt;}
.ws2b{word-spacing:-0.669505pt;}
.ws23{word-spacing:-0.621683pt;}
.wsac{word-spacing:-0.573861pt;}
.wsf8{word-spacing:-0.510097pt;}
.ws19{word-spacing:-0.478218pt;}
.ws18{word-spacing:-0.430396pt;}
.wsaa{word-spacing:-0.382574pt;}
.ws12b{word-spacing:-0.340064pt;}
.wsb{word-spacing:-0.334752pt;}
.ws120{word-spacing:-0.297556pt;}
.wsae{word-spacing:-0.286931pt;}
.ws105{word-spacing:-0.255048pt;}
.ws8b{word-spacing:-0.239109pt;}
.ws104{word-spacing:-0.212540pt;}
.ws5d{word-spacing:-0.191287pt;}
.wse7{word-spacing:-0.143465pt;}
.ws91{word-spacing:-0.095644pt;}
.ws2{word-spacing:-0.047822pt;}
.ws55{word-spacing:-0.047821pt;}
.ws71{word-spacing:-0.031881pt;}
.ws76{word-spacing:-0.008499pt;}
.ws132{word-spacing:-0.003554pt;}
.ws108{word-spacing:-0.002952pt;}
.wsfb{word-spacing:-0.002839pt;}
.ws14d{word-spacing:-0.002561pt;}
.ws12f{word-spacing:-0.002501pt;}
.ws113{word-spacing:-0.001956pt;}
.ws0{word-spacing:0.000000pt;}
.ws11c{word-spacing:0.042508pt;}
.ws11b{word-spacing:0.085016pt;}
.wsf{word-spacing:0.095644pt;}
.wsef{word-spacing:0.191287pt;}
.ws13{word-spacing:0.286931pt;}
.ws142{word-spacing:0.297556pt;}
.wsc2{word-spacing:0.334752pt;}
.ws143{word-spacing:0.340064pt;}
.ws103{word-spacing:0.382572pt;}
.ws5f{word-spacing:0.382574pt;}
.ws4a{word-spacing:0.430396pt;}
.wsb7{word-spacing:0.478218pt;}
.ws111{word-spacing:0.510097pt;}
.ws32{word-spacing:0.526039pt;}
.ws61{word-spacing:0.573861pt;}
.ws42{word-spacing:0.621683pt;}
.wsc9{word-spacing:0.669505pt;}
.ws30{word-spacing:0.717326pt;}
.ws117{word-spacing:0.722637pt;}
.ws90{word-spacing:0.765148pt;}
.wsa5{word-spacing:0.812970pt;}
.ws119{word-spacing:0.850161pt;}
.ws4e{word-spacing:0.908613pt;}
.ws49{word-spacing:0.956435pt;}
.ws14b{word-spacing:0.977685pt;}
.ws125{word-spacing:1.020193pt;}
.ws44{word-spacing:1.052079pt;}
.ws75{word-spacing:1.099900pt;}
.ws106{word-spacing:1.112928pt;}
.ws107{word-spacing:1.147717pt;}
.ws4b{word-spacing:1.147722pt;}
.ws63{word-spacing:1.195544pt;}
.ws100{word-spacing:1.232733pt;}
.wsa1{word-spacing:1.243366pt;}
.ws126{word-spacing:1.275242pt;}
.wseb{word-spacing:1.291187pt;}
.ws64{word-spacing:1.339009pt;}
.ws6e{word-spacing:1.434653pt;}
.ws6{word-spacing:1.482474pt;}
.ws1a{word-spacing:1.530296pt;}
.ws57{word-spacing:1.578118pt;}
.wsa{word-spacing:1.625940pt;}
.ws9a{word-spacing:1.673761pt;}
.ws67{word-spacing:1.721583pt;}
.ws22{word-spacing:1.769405pt;}
.ws3e{word-spacing:1.817227pt;}
.ws134{word-spacing:1.827846pt;}
.ws3c{word-spacing:1.865048pt;}
.wsfd{word-spacing:1.912862pt;}
.ws88{word-spacing:1.912870pt;}
.ws6a{word-spacing:1.960692pt;}
.ws135{word-spacing:1.997878pt;}
.ws5a{word-spacing:2.008514pt;}
.ws133{word-spacing:2.082894pt;}
.ws95{word-spacing:2.104157pt;}
.ws13a{word-spacing:2.167911pt;}
.ws60{word-spacing:2.199801pt;}
.wsf7{word-spacing:2.210419pt;}
.wsb4{word-spacing:2.238628pt;}
.wsb5{word-spacing:2.247623pt;}
.ws140{word-spacing:2.252927pt;}
.wse6{word-spacing:2.295444pt;}
.ws93{word-spacing:2.343266pt;}
.wsb8{word-spacing:2.391088pt;}
.ws35{word-spacing:2.438910pt;}
.ws46{word-spacing:2.486731pt;}
.ws137{word-spacing:2.550483pt;}
.wsad{word-spacing:2.582375pt;}
.ws8a{word-spacing:2.630197pt;}
.ws10c{word-spacing:2.635499pt;}
.wsfe{word-spacing:2.720515pt;}
.wsc4{word-spacing:2.725840pt;}
.ws128{word-spacing:2.763023pt;}
.ws40{word-spacing:2.773662pt;}
.ws51{word-spacing:2.821484pt;}
.ws41{word-spacing:2.869305pt;}
.wsbd{word-spacing:2.917127pt;}
.ws121{word-spacing:2.933055pt;}
.ws6c{word-spacing:2.964949pt;}
.wsb0{word-spacing:3.012771pt;}
.ws2a{word-spacing:3.060592pt;}
.ws11d{word-spacing:3.103088pt;}
.ws50{word-spacing:3.108414pt;}
.wsa4{word-spacing:3.156236pt;}
.wsed{word-spacing:3.204058pt;}
.ws127{word-spacing:3.230612pt;}
.wse{word-spacing:3.299701pt;}
.ws13b{word-spacing:3.358136pt;}
.ws34{word-spacing:3.395345pt;}
.ws45{word-spacing:3.443166pt;}
.ws11a{word-spacing:3.485660pt;}
.ws66{word-spacing:3.490988pt;}
.ws110{word-spacing:3.528168pt;}
.wsb1{word-spacing:3.538810pt;}
.ws97{word-spacing:3.586632pt;}
.ws96{word-spacing:3.586657pt;}
.ws150{word-spacing:3.655692pt;}
.ws1c{word-spacing:3.682275pt;}
.wsb6{word-spacing:3.730097pt;}
.ws122{word-spacing:3.740708pt;}
.wsa7{word-spacing:3.777919pt;}
.ws138{word-spacing:3.783216pt;}
.ws7b{word-spacing:3.825741pt;}
.ws98{word-spacing:3.921384pt;}
.ws14c{word-spacing:3.953249pt;}
.ws79{word-spacing:3.969206pt;}
.ws102{word-spacing:3.995757pt;}
.ws86{word-spacing:4.017028pt;}
.ws9{word-spacing:4.064849pt;}
.ws36{word-spacing:4.112671pt;}
.wsb9{word-spacing:4.160493pt;}
.ws131{word-spacing:4.165789pt;}
.wsc6{word-spacing:4.208315pt;}
.wsff{word-spacing:4.250805pt;}
.ws4f{word-spacing:4.256136pt;}
.wsc8{word-spacing:4.303958pt;}
.ws144{word-spacing:4.335821pt;}
.ws129{word-spacing:4.378329pt;}
.ws10f{word-spacing:4.382662pt;}
.wsc5{word-spacing:4.399602pt;}
.wsf0{word-spacing:4.495245pt;}
.wsfa{word-spacing:4.505853pt;}
.ws31{word-spacing:4.543067pt;}
.ws26{word-spacing:4.590889pt;}
.ws8f{word-spacing:4.686532pt;}
.ws139{word-spacing:4.718394pt;}
.ws9d{word-spacing:4.734354pt;}
.wsbb{word-spacing:4.782176pt;}
.ws13e{word-spacing:4.803410pt;}
.wsb2{word-spacing:4.829997pt;}
.ws3d{word-spacing:4.877819pt;}
.ws12{word-spacing:4.925641pt;}
.ws116{word-spacing:4.973442pt;}
.ws87{word-spacing:4.973463pt;}
.ws10e{word-spacing:5.015950pt;}
.wsbe{word-spacing:5.021284pt;}
.wse9{word-spacing:5.069106pt;}
.ws39{word-spacing:5.116928pt;}
.ws58{word-spacing:5.164750pt;}
.ws10{word-spacing:5.212571pt;}
.wsf6{word-spacing:5.228490pt;}
.ws3a{word-spacing:5.260393pt;}
.wsca{word-spacing:5.270998pt;}
.ws37{word-spacing:5.308215pt;}
.ws109{word-spacing:5.313506pt;}
.ws11e{word-spacing:5.356014pt;}
.ws7a{word-spacing:5.356037pt;}
.ws11f{word-spacing:5.398522pt;}
.wsea{word-spacing:5.499502pt;}
.ws8{word-spacing:5.547324pt;}
.ws7{word-spacing:5.595145pt;}
.ws114{word-spacing:5.653571pt;}
.wsbf{word-spacing:5.690789pt;}
.ws94{word-spacing:5.738611pt;}
.ws62{word-spacing:5.786433pt;}
.ws24{word-spacing:5.834254pt;}
.ws69{word-spacing:5.882076pt;}
.ws4d{word-spacing:5.929898pt;}
.ws12a{word-spacing:5.951127pt;}
.ws47{word-spacing:5.977720pt;}
.ws145{word-spacing:5.993635pt;}
.ws8c{word-spacing:6.025541pt;}
.ws13f{word-spacing:6.036143pt;}
.ws2f{word-spacing:6.073363pt;}
.ws43{word-spacing:6.121185pt;}
.ws27{word-spacing:6.169007pt;}
.ws12e{word-spacing:6.206175pt;}
.ws17{word-spacing:6.216828pt;}
.wsa8{word-spacing:6.264650pt;}
.ws4c{word-spacing:6.312472pt;}
.ws9e{word-spacing:6.408115pt;}
.ws3b{word-spacing:6.455937pt;}
.ws1d{word-spacing:6.503759pt;}
.ws6d{word-spacing:6.551581pt;}
.ws89{word-spacing:6.742868pt;}
.ws48{word-spacing:6.838511pt;}
.wsab{word-spacing:6.934155pt;}
.wsa2{word-spacing:7.029798pt;}
.ws9b{word-spacing:7.077620pt;}
.ws25{word-spacing:7.125442pt;}
.ws141{word-spacing:7.141352pt;}
.ws2d{word-spacing:7.173263pt;}
.wsc7{word-spacing:7.221085pt;}
.ws92{word-spacing:7.316729pt;}
.ws118{word-spacing:7.523925pt;}
.ws21{word-spacing:7.603659pt;}
.wsec{word-spacing:7.699303pt;}
.ws68{word-spacing:7.890590pt;}
.ws124{word-spacing:7.906497pt;}
.wsbc{word-spacing:7.938412pt;}
.ws14{word-spacing:8.225342pt;}
.wsc3{word-spacing:8.273164pt;}
.ws2c{word-spacing:8.751381pt;}
.wse8{word-spacing:8.942668pt;}
.wsf1{word-spacing:9.038312pt;}
.ws9f{word-spacing:9.086134pt;}
.wsa6{word-spacing:9.851282pt;}
.ws15{word-spacing:10.281678pt;}
.ws115{word-spacing:10.329456pt;}
.ws10d{word-spacing:10.414472pt;}
.ws136{word-spacing:10.573977pt;}
.ws9c{word-spacing:10.664252pt;}
.ws70{word-spacing:10.815467pt;}
.wsc0{word-spacing:11.046826pt;}
.ws1b{word-spacing:11.429400pt;}
.wscb{word-spacing:11.908368pt;}
.ws73{word-spacing:12.689329pt;}
.wsf5{word-spacing:13.198805pt;}
.ws123{word-spacing:13.262512pt;}
.ws59{word-spacing:13.629201pt;}
.ws5{word-spacing:14.968210pt;}
.ws148{word-spacing:15.940519pt;}
.ws53{word-spacing:17.640444pt;}
.ws52{word-spacing:17.693578pt;}
.ws8d{word-spacing:17.958228pt;}
.wsba{word-spacing:19.080881pt;}
.ws149{word-spacing:20.191324pt;}
.wsf4{word-spacing:20.850286pt;}
.wsf3{word-spacing:22.045830pt;}
.ws16{word-spacing:22.316820pt;}
.ws14f{word-spacing:24.527145pt;}
.ws14e{word-spacing:25.164766pt;}
.wsf2{word-spacing:25.680283pt;}
.ws4{word-spacing:28.642885pt;}
.wsce{word-spacing:42.425336pt;}
.wscc{word-spacing:51.790962pt;}
.wse1{word-spacing:56.946205pt;}
.wsde{word-spacing:56.951539pt;}
.wsd9{word-spacing:56.955712pt;}
.wscf{word-spacing:58.332900pt;}
.wsd3{word-spacing:58.342543pt;}
.wse2{word-spacing:68.385112pt;}
.wsd0{word-spacing:68.903778pt;}
.wse3{word-spacing:68.911151pt;}
.wsd2{word-spacing:69.771943pt;}
.wsd4{word-spacing:69.819764pt;}
.wsdf{word-spacing:80.353607pt;}
.wsd1{word-spacing:80.354674pt;}
.wsdc{word-spacing:81.727382pt;}
.wse0{word-spacing:81.741368pt;}
.wsd7{word-spacing:90.723023pt;}
.wsdb{word-spacing:92.312246pt;}
.wscd{word-spacing:108.302667pt;}
.wsdd{word-spacing:124.623497pt;}
.wsda{word-spacing:143.034873pt;}
.wsd5{word-spacing:143.049261pt;}
.wsd8{word-spacing:144.526624pt;}
.wsd6{word-spacing:144.539927pt;}
.ws7d{word-spacing:222.430646pt;}
.ws82{word-spacing:239.730465pt;}
.ws83{word-spacing:253.742239pt;}
.ws7c{word-spacing:289.895487pt;}
.ws7e{word-spacing:297.007796pt;}
.ws84{word-spacing:324.757547pt;}
.ws7f{word-spacing:358.089312pt;}
.ws80{word-spacing:368.753563pt;}
.ws81{word-spacing:425.804918pt;}
.ws54{word-spacing:499.227055pt;}
._3e{margin-left:-6.981976pt;}
._5{margin-left:-5.618482pt;}
._0{margin-left:-4.590876pt;}
._2{margin-left:-3.443157pt;}
._1{margin-left:-1.912865pt;}
._8{margin-left:-1.020223pt;}
._16{width:1.912865pt;}
._6{width:3.710270pt;}
._3{width:5.208202pt;}
._41{width:6.248683pt;}
._42{width:9.298536pt;}
._40{width:10.361242pt;}
._12{width:11.668503pt;}
._19{width:13.079204pt;}
._b{width:14.792879pt;}
._a{width:16.594144pt;}
._9{width:18.459198pt;}
._7{width:19.766326pt;}
._d{width:20.715065pt;}
._1a{width:21.950175pt;}
._10{width:22.858800pt;}
._15{width:24.102160pt;}
._18{width:25.118514pt;}
._1d{width:26.110679pt;}
._14{width:27.019292pt;}
._1e{width:27.927900pt;}
._4{width:28.847169pt;}
._17{width:29.840776pt;}
._c{width:30.988493pt;}
._11{width:32.901368pt;}
._e{width:34.479486pt;}
._1b{width:35.579381pt;}
._f{width:36.918391pt;}
._13{width:38.257405pt;}
._43{width:42.667357pt;}
._1c{width:43.677224pt;}
._20{width:48.299969pt;}
._1f{width:52.570293pt;}
._44{width:61.859949pt;}
._21{width:65.886118pt;}
._3d{width:68.920794pt;}
._36{width:70.288339pt;}
._25{width:74.426614pt;}
._3f{width:77.327780pt;}
._2a{width:80.866590pt;}
._2c{width:82.635995pt;}
._2b{width:92.295990pt;}
._2f{width:93.671855pt;}
._39{width:94.591434pt;}
._22{width:98.397962pt;}
._30{width:124.671319pt;}
._26{width:126.297259pt;}
._27{width:131.127256pt;}
._3b{width:132.591110pt;}
._2d{width:143.034873pt;}
._37{width:145.023308pt;}
._31{width:155.049100pt;}
._29{width:156.492038pt;}
._23{width:161.254962pt;}
._3a{width:166.371890pt;}
._28{width:178.327329pt;}
._24{width:186.026632pt;}
._2e{width:190.282768pt;}
._38{width:193.712691pt;}
._35{width:213.627816pt;}
._3c{width:216.285311pt;}
._34{width:400.707784pt;}
._33{width:402.407100pt;}
._32{width:425.000875pt;}
.fs7{font-size:31.881171pt;}
.fs2{font-size:42.508050pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:47.821756pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.762342pt;}
.fs0{font-size:76.514597pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:45.338667pt;}
.y37{bottom:135.668047pt;}
.y12f{bottom:135.669380pt;}
.yf3{bottom:139.418788pt;}
.y19b{bottom:147.657620pt;}
.y36{bottom:149.549658pt;}
.y12e{bottom:151.408361pt;}
.y19a{bottom:159.645859pt;}
.yf2{bottom:162.152576pt;}
.y35{bottom:163.431268pt;}
.y12d{bottom:164.189950pt;}
.y199{bottom:171.634099pt;}
.yf1{bottom:176.034187pt;}
.y34{bottom:177.312879pt;}
.y198{bottom:187.433082pt;}
.yf0{bottom:189.915798pt;}
.y12c{bottom:190.549144pt;}
.y33{bottom:191.194490pt;}
.y197{bottom:199.421322pt;}
.yef{bottom:203.797409pt;}
.y12b{bottom:204.429422pt;}
.y32{bottom:205.076101pt;}
.y196{bottom:211.409561pt;}
.y61{bottom:213.296266pt;}
.yee{bottom:217.679020pt;}
.y12a{bottom:218.311033pt;}
.y31{bottom:218.957712pt;}
.y195{bottom:227.208544pt;}
.yb7{bottom:230.403274pt;}
.y60{bottom:230.963286pt;}
.yed{bottom:231.560631pt;}
.y129{bottom:232.192644pt;}
.y30{bottom:232.839323pt;}
.y194{bottom:239.198117pt;}
.yb6{bottom:244.284885pt;}
.yec{bottom:245.442242pt;}
.y128{bottom:246.074255pt;}
.y2f{bottom:246.720934pt;}
.y193{bottom:251.186357pt;}
.y83{bottom:256.949139pt;}
.yb5{bottom:258.166496pt;}
.y127{bottom:259.955865pt;}
.yeb{bottom:260.011867pt;}
.y15c{bottom:260.601212pt;}
.y2e{bottom:260.602545pt;}
.y5f{bottom:263.791942pt;}
.y192{bottom:266.985339pt;}
.yb4{bottom:272.048107pt;}
.y126{bottom:273.837476pt;}
.yea{bottom:273.893478pt;}
.y15b{bottom:274.482823pt;}
.y2d{bottom:274.484156pt;}
.y5e{bottom:277.673553pt;}
.y191{bottom:278.973579pt;}
.yb3{bottom:285.929718pt;}
.y125{bottom:287.719087pt;}
.ye9{bottom:287.775088pt;}
.y2c{bottom:288.364434pt;}
.y82{bottom:288.365767pt;}
.y1d0{bottom:288.828443pt;}
.y190{bottom:290.961819pt;}
.y5d{bottom:291.553831pt;}
.yb2{bottom:299.811329pt;}
.y1cf{bottom:300.816683pt;}
.y124{bottom:301.600698pt;}
.ye8{bottom:301.656699pt;}
.y2b{bottom:302.246045pt;}
.y5c{bottom:305.435442pt;}
.y18f{bottom:306.760801pt;}
.y1ce{bottom:312.804922pt;}
.yb1{bottom:313.692940pt;}
.y123{bottom:315.482309pt;}
.ye7{bottom:315.538310pt;}
.y2a{bottom:316.127655pt;}
.y18e{bottom:318.749041pt;}
.y5b{bottom:319.317053pt;}
.yb0{bottom:327.574551pt;}
.y122{bottom:329.363920pt;}
.ye6{bottom:329.419921pt;}
.y29{bottom:330.009266pt;}
.y1cd{bottom:330.106602pt;}
.y18d{bottom:330.737281pt;}
.y5a{bottom:333.198664pt;}
.yaf{bottom:341.456162pt;}
.y1cc{bottom:342.096175pt;}
.y18c{bottom:342.726854pt;}
.y121{bottom:343.245531pt;}
.ye5{bottom:343.301532pt;}
.y28{bottom:343.890877pt;}
.y59{bottom:347.080274pt;}
.y81{bottom:348.101628pt;}
.y1cb{bottom:354.084415pt;}
.yae{bottom:355.337773pt;}
.y120{bottom:357.127142pt;}
.ye4{bottom:357.183143pt;}
.y27{bottom:357.772488pt;}
.y18b{bottom:358.524503pt;}
.y80{bottom:361.983239pt;}
.y58{bottom:362.241911pt;}
.yad{bottom:369.219384pt;}
.y18a{bottom:370.514076pt;}
.y11f{bottom:371.008753pt;}
.ye3{bottom:371.064754pt;}
.y1ca{bottom:371.386094pt;}
.y155{bottom:371.654099pt;}
.y26{bottom:371.771435pt;}
.y7f{bottom:375.864850pt;}
.y57{bottom:376.123522pt;}
.y189{bottom:382.502316pt;}
.yac{bottom:383.100995pt;}
.y1c9{bottom:383.374334pt;}
.y11e{bottom:384.890364pt;}
.ye2{bottom:384.946365pt;}
.y154{bottom:385.535710pt;}
.y25{bottom:385.653046pt;}
.y7e{bottom:389.746461pt;}
.y56{bottom:390.005133pt;}
.y188{bottom:394.490556pt;}
.yab{bottom:396.982606pt;}
.y11d{bottom:398.771975pt;}
.y153{bottom:399.417321pt;}
.y24{bottom:399.533323pt;}
.y1c8{bottom:400.677346pt;}
.y7d{bottom:403.628072pt;}
.y55{bottom:403.885410pt;}
.ye1{bottom:406.457462pt;}
.y187{bottom:410.289539pt;}
.yaa{bottom:410.864217pt;}
.y15a{bottom:412.444248pt;}
.y11c{bottom:412.652252pt;}
.y1c7{bottom:412.665586pt;}
.y152{bottom:413.298932pt;}
.y23{bottom:413.414934pt;}
.y7c{bottom:417.509683pt;}
.y54{bottom:417.767021pt;}
.y186{bottom:422.277778pt;}
.y1c6{bottom:424.653826pt;}
.ya9{bottom:424.744494pt;}
.y11b{bottom:426.533863pt;}
.y22{bottom:427.296545pt;}
.ye0{bottom:427.968559pt;}
.y53{bottom:431.648632pt;}
.y185{bottom:434.266018pt;}
.y151{bottom:436.198057pt;}
.ya8{bottom:438.626105pt;}
.y7b{bottom:439.884797pt;}
.y11a{bottom:440.415474pt;}
.y21{bottom:441.178156pt;}
.y1c5{bottom:441.956838pt;}
.y52{bottom:445.530243pt;}
.y184{bottom:450.065001pt;}
.y150{bottom:450.078334pt;}
.ya7{bottom:452.507716pt;}
.y1c4{bottom:453.945078pt;}
.y119{bottom:454.297085pt;}
.y20{bottom:455.059767pt;}
.y51{bottom:459.411854pt;}
.ydf{bottom:460.205203pt;}
.y183{bottom:462.053240pt;}
.y14f{bottom:463.959945pt;}
.y1c3{bottom:465.933318pt;}
.ya6{bottom:466.389327pt;}
.y118{bottom:468.178696pt;}
.y1f{bottom:468.941378pt;}
.y7a{bottom:469.201383pt;}
.y50{bottom:473.293465pt;}
.y182{bottom:474.042813pt;}
.yde{bottom:474.086814pt;}
.y14e{bottom:477.841556pt;}
.ya5{bottom:480.270938pt;}
.y117{bottom:482.060307pt;}
.y1e{bottom:482.822989pt;}
.y79{bottom:483.082994pt;}
.y1c2{bottom:483.234997pt;}
.y4f{bottom:487.175076pt;}
.ydd{bottom:487.968425pt;}
.y181{bottom:489.840463pt;}
.y14d{bottom:491.723167pt;}
.ya4{bottom:494.152549pt;}
.y1c1{bottom:495.224570pt;}
.y116{bottom:495.941918pt;}
.y1d{bottom:496.704600pt;}
.y78{bottom:496.964605pt;}
.y4e{bottom:501.056687pt;}
.y180{bottom:501.830036pt;}
.ydc{bottom:501.850036pt;}
.y14c{bottom:505.604778pt;}
.y1c0{bottom:507.212810pt;}
.ya3{bottom:508.034160pt;}
.y1c{bottom:510.586211pt;}
.y77{bottom:510.846216pt;}
.y115{bottom:511.418228pt;}
.y17f{bottom:513.818276pt;}
.y4d{bottom:514.938298pt;}
.ydb{bottom:515.731647pt;}
.y14b{bottom:519.486389pt;}
.ya2{bottom:521.915771pt;}
.y1bf{bottom:524.514489pt;}
.y76{bottom:524.727827pt;}
.y114{bottom:525.299838pt;}
.y17e{bottom:525.806515pt;}
.y4c{bottom:528.819909pt;}
.yda{bottom:529.613258pt;}
.y1b{bottom:531.525296pt;}
.y14a{bottom:533.368000pt;}
.ya1{bottom:535.797382pt;}
.y1be{bottom:536.502729pt;}
.y75{bottom:538.609438pt;}
.y113{bottom:539.181449pt;}
.y17d{bottom:541.605498pt;}
.y4b{bottom:542.701520pt;}
.yd9{bottom:543.494869pt;}
.y149{bottom:547.249611pt;}
.y1bd{bottom:548.492302pt;}
.ya0{bottom:549.678993pt;}
.y74{bottom:552.491049pt;}
.y112{bottom:553.063060pt;}
.y17c{bottom:553.593738pt;}
.y4a{bottom:556.583131pt;}
.yd8{bottom:557.376480pt;}
.y1bc{bottom:560.480542pt;}
.y148{bottom:561.131222pt;}
.y1a{bottom:563.191263pt;}
.y9f{bottom:563.560604pt;}
.y17b{bottom:565.581977pt;}
.y73{bottom:566.372660pt;}
.y49{bottom:570.464742pt;}
.yd7{bottom:571.258091pt;}
.y147{bottom:575.012833pt;}
.y111{bottom:575.479509pt;}
.y19{bottom:577.071540pt;}
.y9e{bottom:577.442215pt;}
.y1bb{bottom:577.782221pt;}
.y72{bottom:580.254271pt;}
.y17a{bottom:581.380960pt;}
.y48{bottom:584.346353pt;}
.yd6{bottom:585.139702pt;}
.y146{bottom:588.894444pt;}
.y1ba{bottom:589.770461pt;}
.y18{bottom:591.070487pt;}
.y9d{bottom:591.323826pt;}
.y179{bottom:593.370533pt;}
.y71{bottom:594.135882pt;}
.y47{bottom:598.226630pt;}
.yd5{bottom:599.021313pt;}
.y1b9{bottom:601.760034pt;}
.y159{bottom:602.774721pt;}
.y145{bottom:602.776055pt;}
.y110{bottom:604.837429pt;}
.y17{bottom:604.952098pt;}
.y9c{bottom:605.205436pt;}
.y70{bottom:608.017493pt;}
.y178{bottom:609.168182pt;}
.y46{bottom:612.108241pt;}
.yd4{bottom:612.901590pt;}
.y1b8{bottom:613.748274pt;}
.y158{bottom:616.656332pt;}
.y144{bottom:616.657665pt;}
.y10f{bottom:618.719040pt;}
.y16{bottom:618.833709pt;}
.y9b{bottom:619.085714pt;}
.y177{bottom:621.157755pt;}
.y6f{bottom:621.897770pt;}
.y45{bottom:625.989852pt;}
.yd3{bottom:626.783201pt;}
.y157{bottom:630.537943pt;}
.y143{bottom:630.539276pt;}
.y1b7{bottom:631.049953pt;}
.y10e{bottom:632.600651pt;}
.y15{bottom:632.715320pt;}
.y9a{bottom:632.967325pt;}
.y6e{bottom:635.779381pt;}
.y176{bottom:636.955405pt;}
.y44{bottom:639.871463pt;}
.yd2{bottom:640.664812pt;}
.y1b6{bottom:643.038193pt;}
.y156{bottom:644.419554pt;}
.y142{bottom:644.420887pt;}
.y10d{bottom:646.482262pt;}
.y14{bottom:646.596931pt;}
.y99{bottom:646.848936pt;}
.y175{bottom:648.944978pt;}
.y6d{bottom:649.660992pt;}
.y43{bottom:653.753074pt;}
.yd1{bottom:654.546423pt;}
.y1b5{bottom:655.027766pt;}
.y141{bottom:658.301165pt;}
.y10c{bottom:660.363873pt;}
.y13{bottom:660.477208pt;}
.y98{bottom:660.730547pt;}
.y174{bottom:660.933218pt;}
.y6c{bottom:663.542603pt;}
.y42{bottom:667.634685pt;}
.yd0{bottom:668.428034pt;}
.y1b4{bottom:672.329445pt;}
.y10b{bottom:674.245484pt;}
.y12{bottom:674.358819pt;}
.y97{bottom:674.612158pt;}
.y173{bottom:676.732200pt;}
.y6b{bottom:677.424214pt;}
.y41{bottom:681.516296pt;}
.ycf{bottom:682.309645pt;}
.y1b3{bottom:684.317685pt;}
.y10a{bottom:688.127095pt;}
.y11{bottom:688.240430pt;}
.y96{bottom:688.493769pt;}
.y172{bottom:688.720440pt;}
.y6a{bottom:691.305825pt;}
.y40{bottom:695.397907pt;}
.yce{bottom:696.191256pt;}
.y1b2{bottom:696.305925pt;}
.y171{bottom:700.708680pt;}
.y109{bottom:702.008706pt;}
.y10{bottom:702.122041pt;}
.y95{bottom:702.375380pt;}
.y69{bottom:705.187436pt;}
.y140{bottom:705.667446pt;}
.y1b1{bottom:708.295498pt;}
.y3f{bottom:709.279518pt;}
.ycd{bottom:710.072867pt;}
.y170{bottom:712.696919pt;}
.yf{bottom:716.003652pt;}
.y94{bottom:716.256991pt;}
.y108{bottom:717.485015pt;}
.y68{bottom:719.069047pt;}
.y13f{bottom:719.549056pt;}
.y3e{bottom:724.439821pt;}
.ycc{bottom:724.642492pt;}
.y1b0{bottom:725.597177pt;}
.y16f{bottom:728.495902pt;}
.ye{bottom:729.885263pt;}
.y93{bottom:730.138602pt;}
.y107{bottom:731.366626pt;}
.y13e{bottom:733.430667pt;}
.y1af{bottom:737.585417pt;}
.y3d{bottom:738.321432pt;}
.ycb{bottom:738.524103pt;}
.y16e{bottom:740.484142pt;}
.y67{bottom:741.445494pt;}
.yd{bottom:743.766874pt;}
.y106{bottom:745.248237pt;}
.y13d{bottom:747.312278pt;}
.y1ae{bottom:749.574990pt;}
.y3c{bottom:752.203043pt;}
.yca{bottom:752.405714pt;}
.y16d{bottom:752.473715pt;}
.yc{bottom:757.648485pt;}
.y105{bottom:759.129848pt;}
.y1ad{bottom:762.916590pt;}
.y16c{bottom:764.461955pt;}
.y3b{bottom:766.084654pt;}
.yc9{bottom:766.287324pt;}
.y13c{bottom:767.863356pt;}
.yb{bottom:771.530096pt;}
.y104{bottom:773.011459pt;}
.y3a{bottom:779.966265pt;}
.yc8{bottom:780.168935pt;}
.y1ac{bottom:780.218270pt;}
.y16b{bottom:780.260937pt;}
.y13b{bottom:781.744967pt;}
.ya{bottom:785.411707pt;}
.y103{bottom:786.893070pt;}
.y66{bottom:788.567770pt;}
.y139{bottom:788.685106pt;}
.y1ab{bottom:792.206509pt;}
.y16a{bottom:792.249177pt;}
.y39{bottom:793.847876pt;}
.yc7{bottom:794.050546pt;}
.y92{bottom:795.083900pt;}
.y13a{bottom:795.626578pt;}
.y9{bottom:799.293318pt;}
.y102{bottom:800.774681pt;}
.y65{bottom:802.449381pt;}
.y1aa{bottom:804.196083pt;}
.y169{bottom:804.237417pt;}
.y38{bottom:807.729487pt;}
.yc6{bottom:807.932157pt;}
.y91{bottom:808.965511pt;}
.y138{bottom:809.508189pt;}
.y101{bottom:814.654958pt;}
.y168{bottom:820.036399pt;}
.y1a9{bottom:821.497762pt;}
.y8{bottom:821.611097pt;}
.yc5{bottom:821.813768pt;}
.y90{bottom:822.847122pt;}
.y100{bottom:828.536569pt;}
.y137{bottom:830.059266pt;}
.y167{bottom:832.024639pt;}
.y1a8{bottom:833.486002pt;}
.yc4{bottom:835.695379pt;}
.y8f{bottom:836.728733pt;}
.yff{bottom:842.418180pt;}
.y136{bottom:843.940877pt;}
.y166{bottom:844.012879pt;}
.y1a7{bottom:845.474241pt;}
.yc3{bottom:849.576990pt;}
.y8e{bottom:850.610344pt;}
.y133{bottom:850.881016pt;}
.y165{bottom:856.002452pt;}
.yfe{bottom:856.299791pt;}
.y135{bottom:857.822488pt;}
.y7{bottom:858.037159pt;}
.y1a6{bottom:862.777254pt;}
.yc2{bottom:863.458601pt;}
.y8d{bottom:864.491955pt;}
.yfd{bottom:870.181402pt;}
.y134{bottom:871.702766pt;}
.y1a5{bottom:874.765494pt;}
.y164{bottom:874.930830pt;}
.yc1{bottom:877.340212pt;}
.y8c{bottom:878.372233pt;}
.y6{bottom:881.688299pt;}
.yfc{bottom:884.063013pt;}
.y1a4{bottom:886.753734pt;}
.yc0{bottom:891.221823pt;}
.y8b{bottom:892.253844pt;}
.y5{bottom:893.571203pt;}
.yfb{bottom:897.944624pt;}
.y4{bottom:899.356652pt;}
.y1a3{bottom:904.055413pt;}
.ybf{bottom:905.103434pt;}
.y8a{bottom:906.135454pt;}
.y163{bottom:906.480795pt;}
.yfa{bottom:911.826235pt;}
.y132{bottom:913.076927pt;}
.y1a2{bottom:916.044986pt;}
.ybe{bottom:919.673059pt;}
.y89{bottom:920.017065pt;}
.y162{bottom:920.362406pt;}
.yf9{bottom:925.707846pt;}
.y3{bottom:925.850515pt;}
.y1a1{bottom:928.033226pt;}
.ybd{bottom:933.554669pt;}
.y88{bottom:933.898676pt;}
.y161{bottom:934.242683pt;}
.yf8{bottom:941.184155pt;}
.y1a0{bottom:945.334905pt;}
.ybc{bottom:947.436280pt;}
.y160{bottom:948.124294pt;}
.y87{bottom:954.449754pt;}
.yf7{bottom:955.065766pt;}
.y19f{bottom:957.323145pt;}
.ybb{bottom:961.317891pt;}
.y131{bottom:961.391226pt;}
.y15f{bottom:962.005905pt;}
.yf6{bottom:968.947377pt;}
.y19e{bottom:969.312718pt;}
.yba{bottom:975.199502pt;}
.y15e{bottom:975.887516pt;}
.y2{bottom:979.783594pt;}
.yf5{bottom:982.828988pt;}
.y86{bottom:986.395726pt;}
.y19d{bottom:986.614397pt;}
.yb9{bottom:989.081113pt;}
.y15d{bottom:989.769127pt;}
.yf4{bottom:996.710599pt;}
.y19c{bottom:998.602637pt;}
.y85{bottom:1000.277337pt;}
.y1{bottom:1002.498715pt;}
.yb8{bottom:1010.592210pt;}
.y84{bottom:1014.157615pt;}
.y130{bottom:1014.158948pt;}
.y63{bottom:1057.662667pt;}
.y62{bottom:1073.602667pt;}
.h16{height:21.934246pt;}
.h6{height:28.267853pt;}
.h18{height:29.245538pt;}
.h1e{height:29.453543pt;}
.h1b{height:29.458876pt;}
.hf{height:32.662260pt;}
.hb{height:32.901368pt;}
.hc{height:33.092655pt;}
.h14{height:33.188299pt;}
.h19{height:33.427408pt;}
.h10{height:33.714338pt;}
.h9{height:35.866317pt;}
.hd{height:37.512510pt;}
.h1c{height:38.509724pt;}
.h1d{height:39.101736pt;}
.he{height:39.389124pt;}
.h17{height:41.834863pt;}
.h15{height:42.249319pt;}
.h3{height:43.549679pt;}
.h8{height:43.868491pt;}
.ha{height:44.123541pt;}
.h7{height:44.188498pt;}
.h11{height:44.839119pt;}
.h13{height:44.994248pt;}
.h5{height:51.409649pt;}
.h2{height:52.948101pt;}
.h4{height:58.152638pt;}
.h12{height:59.607874pt;}
.h1a{height:60.853211pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:75.590667pt;}
.xd{left:76.786507pt;}
.x15{left:77.915896pt;}
.xa{left:82.140108pt;}
.x7{left:86.140308pt;}
.x16{left:88.743104pt;}
.x3{left:90.824542pt;}
.xe{left:96.712836pt;}
.x1{left:98.387587pt;}
.x2a{left:101.134391pt;}
.x1e{left:108.770772pt;}
.x24{left:109.762822pt;}
.x20{left:111.096222pt;}
.x22{left:114.079038pt;}
.x23{left:115.412438pt;}
.x26{left:140.381686pt;}
.x8{left:143.812524pt;}
.x25{left:145.361935pt;}
.x1d{left:146.293982pt;}
.x28{left:151.323567pt;}
.x2b{left:171.048553pt;}
.xb{left:174.158042pt;}
.x4{left:178.371586pt;}
.x29{left:180.185010pt;}
.x21{left:182.621131pt;}
.xc{left:198.317916pt;}
.x17{left:201.684751pt;}
.x5{left:215.561445pt;}
.x2c{left:219.238962pt;}
.x18{left:230.135507pt;}
.x2{left:246.053636pt;}
.x1f{left:255.859460pt;}
.x2d{left:276.743171pt;}
.x19{left:286.007634pt;}
.x6{left:288.743771pt;}
.x14{left:382.388000pt;}
.xf{left:416.960848pt;}
.x1c{left:418.090238pt;}
.x1b{left:428.917446pt;}
.x11{left:430.778872pt;}
.x10{left:436.887177pt;}
.x2e{left:441.308732pt;}
.x30{left:451.625248pt;}
.x36{left:463.268496pt;}
.x33{left:464.823241pt;}
.x35{left:468.788772pt;}
.x31{left:487.631048pt;}
.x1a{left:494.775405pt;}
.x12{left:504.162541pt;}
.x27{left:516.199143pt;}
.x2f{left:528.341083pt;}
.x32{left:589.676150pt;}
.x9{left:650.652532pt;}
.x34{left:684.046201pt;}
}




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