
    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_5f524ccabc7b98960f19062c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6dd3986b6efa4cbe9cf04936.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_24a810cb8f7d52ae40e5e8fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_54b8fdd3b8a63324c176e155.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.622000;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_11cd6759d45168d2a5b17ab7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_2cbadb2d006646b0e2b19265.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4e2efad1d6455cbbc8cb6062.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.744000;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_6b7966f469684734163d4a69.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;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_1aa2eab14a2feaedebc9e221.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740000;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_aa4d231fc52d30b7008e57df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_1524d85abc63193fdbac596e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_89fdfe5093b8b22d1972a434.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.728000;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_4cc099643f442de13344efea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.746000;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_5d1b31f77fafca359ab191be.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.924000;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_bc8aca518e1c4247e38398ed.woff2')format("woff");}.fff{font-family:fff;line-height:0.728000;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_e89ec9f50ed4055a1a8f9d0e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.964000;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_8280b6718458735085f9860d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_646bd128603706eef2a6dc33.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.017100px;}
.ls2c{letter-spacing:0.033600px;}
.ls2a{letter-spacing:0.038400px;}
.ls0{letter-spacing:0.082789px;}
.lse{letter-spacing:0.108001px;}
.ls10{letter-spacing:0.114001px;}
.ls19{letter-spacing:0.153598px;}
.ls6{letter-spacing:0.165300px;}
.ls2b{letter-spacing:0.168002px;}
.ls9{letter-spacing:0.174002px;}
.lsc{letter-spacing:0.186002px;}
.ls17{letter-spacing:0.272479px;}
.ls15{letter-spacing:0.307196px;}
.ls28{letter-spacing:0.354004px;}
.ls3{letter-spacing:10.243072px;}
.ls2{letter-spacing:10.262272px;}
.ls14{letter-spacing:10.358271px;}
.ls7{letter-spacing:10.550268px;}
.ls2d{letter-spacing:10.627067px;}
.ls18{letter-spacing:10.919863px;}
.ls5{letter-spacing:12.260700px;}
.ls13{letter-spacing:13.038130px;}
.lsb{letter-spacing:13.110131px;}
.lsf{letter-spacing:13.374134px;}
.ls12{letter-spacing:13.380134px;}
.ls29{letter-spacing:13.404134px;}
.lsd{letter-spacing:13.452135px;}
.ls1{letter-spacing:21.124536px;}
.ls11{letter-spacing:23.844238px;}
.ls21{letter-spacing:61.602430px;}
.ls1b{letter-spacing:61.943226px;}
.ls24{letter-spacing:65.687179px;}
.ls23{letter-spacing:66.027975px;}
.ls1c{letter-spacing:69.767128px;}
.ls27{letter-spacing:70.107924px;}
.ls1f{letter-spacing:80.312596px;}
.ls25{letter-spacing:85.074137px;}
.ls16{letter-spacing:87.454907px;}
.ls22{letter-spacing:88.136498px;}
.ls1d{letter-spacing:88.477294px;}
.ls20{letter-spacing:103.784303px;}
.ls26{letter-spacing:105.824277px;}
.ls1e{letter-spacing:114.670567px;}
.ls1a{letter-spacing:120.795290px;}
.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;}
}
.wsa4{word-spacing:-114.718566px;}
.ws9b{word-spacing:-108.939438px;}
.wsb2{word-spacing:-105.872277px;}
.wsa6{word-spacing:-103.832302px;}
.wsa3{word-spacing:-88.525293px;}
.wsaa{word-spacing:-88.184498px;}
.wsa0{word-spacing:-87.502906px;}
.wsad{word-spacing:-85.122136px;}
.wsa5{word-spacing:-80.360595px;}
.wsb3{word-spacing:-70.155923px;}
.wsa2{word-spacing:-69.815127px;}
.wsab{word-spacing:-66.075974px;}
.wsac{word-spacing:-65.735178px;}
.wsa1{word-spacing:-61.991225px;}
.wsa7{word-spacing:-61.650429px;}
.wsbe{word-spacing:-13.464135px;}
.ws23{word-spacing:-10.598268px;}
.ws11c{word-spacing:-0.071999px;}
.ws4d{word-spacing:-0.060001px;}
.ws6{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.047999px;}
.ws5{word-spacing:-0.035995px;}
.ws42{word-spacing:0.000000px;}
.ws3a{word-spacing:9.575880px;}
.ws35{word-spacing:9.585480px;}
.ws3d{word-spacing:9.623880px;}
.ws32{word-spacing:9.638280px;}
.ws2c{word-spacing:9.647879px;}
.ws10e{word-spacing:9.662279px;}
.ws3e{word-spacing:9.695879px;}
.ws66{word-spacing:9.710279px;}
.ws133{word-spacing:9.734278px;}
.ws29{word-spacing:9.743878px;}
.wsa{word-spacing:9.791878px;}
.wsc{word-spacing:9.815877px;}
.ws39{word-spacing:9.820677px;}
.ws25{word-spacing:9.825477px;}
.ws135{word-spacing:9.830277px;}
.ws28{word-spacing:9.844677px;}
.ws40{word-spacing:9.849477px;}
.ws27{word-spacing:9.854277px;}
.ws26{word-spacing:9.863877px;}
.ws30{word-spacing:9.873477px;}
.ws2e{word-spacing:9.883076px;}
.ws134{word-spacing:9.887876px;}
.ws2f{word-spacing:9.892676px;}
.ws2d{word-spacing:9.911876px;}
.ws67{word-spacing:9.916676px;}
.ws2a{word-spacing:9.921476px;}
.ws6a{word-spacing:9.926276px;}
.wsb{word-spacing:9.931076px;}
.ws13e{word-spacing:9.940676px;}
.ws3f{word-spacing:9.959875px;}
.ws12d{word-spacing:9.964675px;}
.ws38{word-spacing:9.979075px;}
.ws12f{word-spacing:9.983875px;}
.ws125{word-spacing:9.988675px;}
.ws3b{word-spacing:9.998275px;}
.ws136{word-spacing:10.007875px;}
.ws69{word-spacing:10.036675px;}
.ws41{word-spacing:10.041474px;}
.wsde{word-spacing:10.051074px;}
.ws140{word-spacing:10.055874px;}
.ws124{word-spacing:10.075074px;}
.ws37{word-spacing:10.079874px;}
.ws126{word-spacing:10.084674px;}
.ws12e{word-spacing:10.094274px;}
.ws34{word-spacing:10.103874px;}
.ws68{word-spacing:10.113474px;}
.ws123{word-spacing:10.118274px;}
.ws12b{word-spacing:10.123073px;}
.ws132{word-spacing:10.132673px;}
.ws13b{word-spacing:10.151873px;}
.ws13c{word-spacing:10.171073px;}
.ws22{word-spacing:10.175873px;}
.ws24{word-spacing:10.180673px;}
.ws65{word-spacing:10.190273px;}
.ws121{word-spacing:10.195073px;}
.ws102{word-spacing:10.199872px;}
.ws3c{word-spacing:10.204672px;}
.ws131{word-spacing:10.209472px;}
.ws13a{word-spacing:10.219072px;}
.ws139{word-spacing:10.228672px;}
.wsb6{word-spacing:10.233472px;}
.ws137{word-spacing:10.238272px;}
.ws142{word-spacing:10.262272px;}
.ws130{word-spacing:10.267072px;}
.ws120{word-spacing:10.271872px;}
.ws122{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws138{word-spacing:10.300671px;}
.ws93{word-spacing:10.305471px;}
.ws141{word-spacing:10.315071px;}
.ws128{word-spacing:10.329471px;}
.ws13d{word-spacing:10.339071px;}
.wsfd{word-spacing:10.343871px;}
.ws129{word-spacing:10.348671px;}
.ws11f{word-spacing:10.353471px;}
.wsed{word-spacing:10.363070px;}
.ws111{word-spacing:10.382270px;}
.wsec{word-spacing:10.387070px;}
.ws33{word-spacing:10.425470px;}
.ws36{word-spacing:10.444669px;}
.wse2{word-spacing:10.459069px;}
.ws31{word-spacing:10.463869px;}
.ws11e{word-spacing:10.468669px;}
.ws12a{word-spacing:10.497469px;}
.wsb9{word-spacing:10.507069px;}
.ws10f{word-spacing:10.526268px;}
.ws127{word-spacing:10.531068px;}
.wse1{word-spacing:10.535868px;}
.wsb5{word-spacing:10.540668px;}
.ws13f{word-spacing:10.569468px;}
.wse5{word-spacing:10.574268px;}
.ws2b{word-spacing:10.579068px;}
.ws98{word-spacing:10.583868px;}
.ws99{word-spacing:10.603067px;}
.ws104{word-spacing:10.607867px;}
.wsea{word-spacing:10.617467px;}
.wseb{word-spacing:10.651067px;}
.ws94{word-spacing:10.655867px;}
.ws95{word-spacing:10.660667px;}
.wse6{word-spacing:10.665467px;}
.ws9a{word-spacing:10.684666px;}
.ws115{word-spacing:10.689466px;}
.wsb0{word-spacing:10.699066px;}
.wse7{word-spacing:10.727866px;}
.wsf3{word-spacing:10.737466px;}
.wsaf{word-spacing:10.742266px;}
.wsb7{word-spacing:10.766265px;}
.wsb1{word-spacing:10.771065px;}
.wsef{word-spacing:10.795065px;}
.wsa9{word-spacing:10.799865px;}
.ws113{word-spacing:10.804665px;}
.ws97{word-spacing:10.809465px;}
.wse3{word-spacing:10.843064px;}
.wsfb{word-spacing:10.876664px;}
.ws110{word-spacing:10.881464px;}
.ws9f{word-spacing:10.891064px;}
.ws96{word-spacing:10.915064px;}
.wse9{word-spacing:10.929463px;}
.wse8{word-spacing:10.953463px;}
.wse4{word-spacing:10.987063px;}
.ws103{word-spacing:10.996663px;}
.wsdf{word-spacing:11.030262px;}
.wse0{word-spacing:11.063862px;}
.wsb8{word-spacing:11.068662px;}
.ws4{word-spacing:11.647800px;}
.ws9{word-spacing:11.750400px;}
.ws7{word-spacing:11.809800px;}
.ws11{word-spacing:11.850300px;}
.ws8{word-spacing:11.896200px;}
.wsf{word-spacing:11.924400px;}
.ws10{word-spacing:12.095400px;}
.ws18{word-spacing:12.260700px;}
.ws1b{word-spacing:12.277800px;}
.ws88{word-spacing:12.312123px;}
.ws1c{word-spacing:12.323400px;}
.ws21{word-spacing:12.334800px;}
.ws1e{word-spacing:12.351900px;}
.wse{word-spacing:12.357600px;}
.wscf{word-spacing:12.420124px;}
.ws15{word-spacing:12.420300px;}
.ws1a{word-spacing:12.443100px;}
.ws19{word-spacing:12.448800px;}
.ws1f{word-spacing:12.517200px;}
.ws13{word-spacing:12.528600px;}
.ws14{word-spacing:12.614100px;}
.wsd0{word-spacing:12.618126px;}
.ws17{word-spacing:12.682500px;}
.ws46{word-spacing:12.690127px;}
.ws1d{word-spacing:12.693900px;}
.wsd1{word-spacing:12.696127px;}
.ws12{word-spacing:12.699600px;}
.wsc1{word-spacing:12.768128px;}
.ws16{word-spacing:12.779400px;}
.ws73{word-spacing:12.834128px;}
.wsd6{word-spacing:12.840128px;}
.ws5d{word-spacing:12.876129px;}
.ws20{word-spacing:12.882000px;}
.ws63{word-spacing:12.906129px;}
.ws64{word-spacing:12.936129px;}
.wsdc{word-spacing:12.942129px;}
.ws60{word-spacing:12.954130px;}
.ws54{word-spacing:12.960130px;}
.ws74{word-spacing:12.972130px;}
.wsda{word-spacing:12.978130px;}
.ws56{word-spacing:12.984130px;}
.wsc3{word-spacing:12.990130px;}
.ws57{word-spacing:12.996130px;}
.ws43{word-spacing:13.008130px;}
.wsff{word-spacing:13.014130px;}
.wsc4{word-spacing:13.020130px;}
.ws4b{word-spacing:13.026130px;}
.ws5a{word-spacing:13.032130px;}
.ws52{word-spacing:13.038130px;}
.ws72{word-spacing:13.044130px;}
.ws61{word-spacing:13.050130px;}
.ws6d{word-spacing:13.056131px;}
.ws7f{word-spacing:13.062131px;}
.ws6e{word-spacing:13.068131px;}
.ws82{word-spacing:13.074131px;}
.ws51{word-spacing:13.080131px;}
.wscb{word-spacing:13.086131px;}
.wsbd{word-spacing:13.092131px;}
.wsc7{word-spacing:13.098131px;}
.ws59{word-spacing:13.104131px;}
.ws47{word-spacing:13.110131px;}
.ws78{word-spacing:13.116131px;}
.wsd8{word-spacing:13.122131px;}
.ws45{word-spacing:13.128131px;}
.ws48{word-spacing:13.134131px;}
.ws101{word-spacing:13.140131px;}
.ws8d{word-spacing:13.146131px;}
.ws10d{word-spacing:13.158132px;}
.wsd5{word-spacing:13.164132px;}
.wsc6{word-spacing:13.170132px;}
.ws7a{word-spacing:13.176132px;}
.ws62{word-spacing:13.182132px;}
.wsdd{word-spacing:13.188132px;}
.ws5f{word-spacing:13.194132px;}
.ws70{word-spacing:13.206132px;}
.ws71{word-spacing:13.212132px;}
.wsf1{word-spacing:13.218132px;}
.ws4a{word-spacing:13.224132px;}
.ws80{word-spacing:13.230132px;}
.ws5e{word-spacing:13.236132px;}
.wsdb{word-spacing:13.242132px;}
.ws7e{word-spacing:13.248132px;}
.ws7c{word-spacing:13.254133px;}
.ws86{word-spacing:13.260133px;}
.wsd3{word-spacing:13.266133px;}
.ws87{word-spacing:13.278133px;}
.ws84{word-spacing:13.284133px;}
.ws50{word-spacing:13.290133px;}
.ws6b{word-spacing:13.296133px;}
.wsca{word-spacing:13.302133px;}
.ws53{word-spacing:13.308133px;}
.wsc5{word-spacing:13.314133px;}
.ws8a{word-spacing:13.320133px;}
.wsbb{word-spacing:13.326133px;}
.wsd9{word-spacing:13.332133px;}
.ws44{word-spacing:13.338133px;}
.ws75{word-spacing:13.344133px;}
.wsc9{word-spacing:13.350133px;}
.wsfe{word-spacing:13.356134px;}
.ws83{word-spacing:13.362134px;}
.ws4e{word-spacing:13.368134px;}
.ws11a{word-spacing:13.374134px;}
.wsbc{word-spacing:13.380134px;}
.ws5b{word-spacing:13.386134px;}
.wscd{word-spacing:13.398134px;}
.ws100{word-spacing:13.404134px;}
.ws55{word-spacing:13.410134px;}
.ws119{word-spacing:13.422134px;}
.ws85{word-spacing:13.428134px;}
.wscc{word-spacing:13.434134px;}
.ws58{word-spacing:13.440134px;}
.ws5c{word-spacing:13.446134px;}
.ws81{word-spacing:13.452135px;}
.wsd4{word-spacing:13.458135px;}
.ws8f{word-spacing:13.464135px;}
.ws49{word-spacing:13.470135px;}
.ws89{word-spacing:13.476135px;}
.ws92{word-spacing:13.494135px;}
.wsd2{word-spacing:13.506135px;}
.ws90{word-spacing:13.512135px;}
.ws6c{word-spacing:13.518135px;}
.ws8c{word-spacing:13.524135px;}
.ws8e{word-spacing:13.530135px;}
.wsc2{word-spacing:13.536135px;}
.wsc8{word-spacing:13.548135px;}
.wsce{word-spacing:13.566136px;}
.ws77{word-spacing:13.578136px;}
.wsc0{word-spacing:13.602136px;}
.wsd7{word-spacing:13.644136px;}
.ws6f{word-spacing:13.668137px;}
.wsba{word-spacing:13.674137px;}
.wsf2{word-spacing:13.680137px;}
.wsf0{word-spacing:13.692137px;}
.ws11b{word-spacing:13.722137px;}
.ws7b{word-spacing:13.788138px;}
.ws4f{word-spacing:13.818138px;}
.ws4c{word-spacing:13.830138px;}
.ws7d{word-spacing:13.842138px;}
.ws76{word-spacing:15.451071px;}
.ws79{word-spacing:15.523071px;}
.ws8b{word-spacing:15.652670px;}
.ws91{word-spacing:15.659869px;}
.wsbf{word-spacing:15.897468px;}
.ws1{word-spacing:26.160131px;}
.ws3{word-spacing:26.304132px;}
.ws2{word-spacing:26.364132px;}
.ws11d{word-spacing:59.821652px;}
.ws12c{word-spacing:59.860052px;}
.ws9c{word-spacing:61.751228px;}
.wsb4{word-spacing:61.900026px;}
.ws106{word-spacing:63.522406px;}
.wsf5{word-spacing:63.863202px;}
.ws9e{word-spacing:64.621592px;}
.wsae{word-spacing:64.962388px;}
.ws9d{word-spacing:80.269397px;}
.ws109{word-spacing:83.931751px;}
.wsf8{word-spacing:84.613342px;}
.wsa8{word-spacing:88.093299px;}
.wsee{word-spacing:129.478381px;}
.ws107{word-spacing:145.841377px;}
.wsf6{word-spacing:146.518168px;}
.ws108{word-spacing:158.086024px;}
.wsf7{word-spacing:158.767615px;}
.wsf4{word-spacing:169.461882px;}
.ws10a{word-spacing:173.052237px;}
.wsf9{word-spacing:173.733828px;}
.wsfc{word-spacing:176.570593px;}
.ws105{word-spacing:186.890464px;}
.ws10c{word-spacing:202.384670px;}
.ws10b{word-spacing:220.672442px;}
.wsfa{word-spacing:221.694829px;}
.ws112{word-spacing:333.264634px;}
.ws116{word-spacing:346.190873px;}
.ws118{word-spacing:359.457907px;}
.ws114{word-spacing:372.686541px;}
.ws117{word-spacing:385.953576px;}
._22{margin-left:-115.323358px;}
._24{margin-left:-113.825777px;}
._3a{margin-left:-106.251472px;}
._25{margin-left:-104.120298px;}
._21{margin-left:-89.677279px;}
._1d{margin-left:-88.160498px;}
._28{margin-left:-87.104511px;}
._2c{margin-left:-85.102936px;}
._23{margin-left:-80.614992px;}
._29{margin-left:-71.024712px;}
._20{margin-left:-68.975138px;}
._2a{margin-left:-65.653579px;}
._2b{margin-left:-64.429595px;}
._1f{margin-left:-62.840814px;}
._1e{margin-left:-61.343233px;}
._f{margin-left:-13.607830px;}
._5{margin-left:-10.550268px;}
._10{margin-left:-8.841489px;}
._6{margin-left:-5.419132px;}
._7{margin-left:-3.652754px;}
._9{margin-left:-2.606367px;}
._8{margin-left:-1.238385px;}
._2{width:1.265400px;}
._11{width:3.734353px;}
._a{width:9.465482px;}
._0{width:10.958263px;}
._c{width:12.378124px;}
._1{width:13.554600px;}
._b{width:14.682759px;}
._d{width:29.952300px;}
._3{width:46.545018px;}
._1b{width:61.468032px;}
._31{width:63.647204px;}
._14{width:64.707991px;}
._3c{width:65.778378px;}
._15{width:72.527093px;}
._34{width:78.954213px;}
._18{width:80.317396px;}
._16{width:88.333296px;}
._13{width:90.181273px;}
._19{width:103.981100px;}
._e{width:105.776278px;}
._27{width:111.742603px;}
._17{width:114.478569px;}
._39{width:115.524956px;}
._51{width:129.526381px;}
._5d{width:131.844752px;}
._4c{width:137.158286px;}
._44{width:144.982188px;}
._4d{width:167.623505px;}
._5b{width:175.255409px;}
._7a{width:176.733791px;}
._45{width:182.738516px;}
._53{width:187.351258px;}
._48{width:195.323958px;}
._55{width:196.341546px;}
._7e{width:200.123898px;}
._3d{width:201.266284px;}
._75{width:202.634267px;}
._57{width:203.973450px;}
._72{width:207.659804px;}
._80{width:213.654929px;}
._69{width:216.074099px;}
._7f{width:219.630855px;}
._66{width:220.869239px;}
._6a{width:226.955563px;}
._81{width:234.635467px;}
._5a{width:245.660929px;}
._4e{width:247.220910px;}
._6f{width:248.358495px;}
._37{width:253.120036px;}
._46{width:255.193610px;}
._52{width:259.124761px;}
._78{width:260.257547px;}
._56{width:263.017512px;}
._47{width:266.607867px;}
._7b{width:269.291034px;}
._71{width:270.649417px;}
._49{width:273.414182px;}
._5c{width:279.654104px;}
._4f{width:281.238084px;}
._64{width:282.654067px;}
._58{width:288.869989px;}
._65{width:295.364308px;}
._73{width:297.711479px;}
._8f{width:299.866652px;}
._7d{width:301.618630px;}
._76{width:308.256947px;}
._6b{width:309.615330px;}
._67{width:310.671317px;}
._4b{width:313.978475px;}
._54{width:320.352796px;}
._6c{width:322.200772px;}
._79{width:323.223160px;}
._4a{width:328.176698px;}
._36{width:329.314284px;}
._70{width:331.469457px;}
._77{width:334.445419px;}
._59{width:335.808602px;}
._6d{width:337.310984px;}
._42{width:339.418157px;}
._7c{width:343.354108px;}
._74{width:344.995688px;}
._8c{width:355.651554px;}
._5f{width:357.019537px;}
._60{width:370.507369px;}
._82{width:371.798552px;}
._33{width:373.118536px;}
._3f{width:375.513706px;}
._6e{width:384.451194px;}
._90{width:386.059174px;}
._8a{width:392.457494px;}
._87{width:399.335808px;}
._68{width:405.484531px;}
._92{width:409.962875px;}
._50{width:413.030037px;}
._3e{width:420.537143px;}
._86{width:423.225110px;}
._84{width:425.620280px;}
._43{width:434.116173px;}
._8b{width:435.661754px;}
._61{width:444.325646px;}
._32{width:449.312784px;}
._88{width:451.117561px;}
._1c{width:458.845464px;}
._5e{width:462.690216px;}
._62{width:473.240484px;}
._91{width:476.806840px;}
._26{width:485.912326px;}
._3b{width:487.832302px;}
._1a{width:504.920088px;}
._38{width:523.366258px;}
._35{width:537.847677px;}
._40{width:541.399632px;}
._12{width:559.831402px;}
._30{width:575.781603px;}
._8d{width:579.904751px;}
._8e{width:586.461469px;}
._85{width:598.341321px;}
._89{width:609.121986px;}
._2f{width:623.781003px;}
._41{width:637.268834px;}
._2e{width:654.692616px;}
._2d{width:673.700379px;}
._83{width:683.357858px;}
._63{width:1742.339820px;}
._4{width:1768.873889px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000600px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y24{bottom:54.000000px;}
.y156{bottom:124.485075px;}
.y205{bottom:124.487385px;}
.y173{bottom:124.489455px;}
.ya9{bottom:124.493850px;}
.yf8{bottom:124.496565px;}
.y21e{bottom:124.497210px;}
.y1e0{bottom:124.498075px;}
.y1cb{bottom:124.498262px;}
.y43{bottom:124.504170px;}
.y212{bottom:125.075490px;}
.y256{bottom:125.348044px;}
.y73{bottom:136.641330px;}
.yd4{bottom:138.599625px;}
.y255{bottom:139.635066px;}
.y42{bottom:141.001564px;}
.y155{bottom:143.959769px;}
.y204{bottom:143.962080px;}
.y172{bottom:143.964150px;}
.ya8{bottom:143.968545px;}
.yf7{bottom:143.971260px;}
.y21d{bottom:143.971904px;}
.y1a0{bottom:144.390449px;}
.y18b{bottom:144.550184px;}
.y1df{bottom:147.032593px;}
.y1ca{bottom:147.032780px;}
.y100{bottom:153.068085px;}
.y72{bottom:156.116025px;}
.yd3{bottom:158.074320px;}
.y254{bottom:159.108422px;}
.y1de{bottom:161.234416px;}
.y1c9{bottom:161.234603px;}
.y154{bottom:163.518465px;}
.y203{bottom:163.520775px;}
.y171{bottom:163.522846px;}
.ya7{bottom:163.527240px;}
.yf6{bottom:163.529955px;}
.y21c{bottom:163.530600px;}
.y19f{bottom:163.949145px;}
.y18a{bottom:164.108880px;}
.y41{bottom:166.513245px;}
.yff{bottom:172.542780px;}
.y253{bottom:173.395444px;}
.y71{bottom:175.590719px;}
.yd2{bottom:177.549014px;}
.y1dd{bottom:180.027381px;}
.y1c8{bottom:180.027568px;}
.y153{bottom:182.993160px;}
.y202{bottom:182.995470px;}
.y170{bottom:182.997540px;}
.ya6{bottom:183.001935px;}
.yf5{bottom:183.004650px;}
.y40{bottom:183.010639px;}
.y19e{bottom:183.423840px;}
.y189{bottom:183.583575px;}
.y21b{bottom:188.957400px;}
.yfe{bottom:192.017475px;}
.y252{bottom:192.868800px;}
.y1dc{bottom:194.229203px;}
.y1c7{bottom:194.229391px;}
.y70{bottom:195.065414px;}
.yd1{bottom:197.107710px;}
.y3f{bottom:199.508033px;}
.y152{bottom:202.467855px;}
.y201{bottom:202.470165px;}
.y16f{bottom:202.472235px;}
.ya5{bottom:202.476630px;}
.y19d{bottom:202.898534px;}
.y188{bottom:203.058269px;}
.y251{bottom:207.155822px;}
.yf4{bottom:208.516500px;}
.yfd{bottom:211.576170px;}
.y1db{bottom:213.023368px;}
.y1c6{bottom:213.023556px;}
.y6f{bottom:214.624110px;}
.y3e{bottom:216.005426px;}
.yd0{bottom:216.582405px;}
.y250{bottom:221.357644px;}
.y151{bottom:222.026550px;}
.y200{bottom:222.028861px;}
.y16e{bottom:222.030931px;}
.ya4{bottom:222.035325px;}
.y19c{bottom:222.457230px;}
.y187{bottom:222.616965px;}
.y23{bottom:225.954900px;}
.y1c5{bottom:227.225378px;}
.yfc{bottom:231.050865px;}
.y1da{bottom:231.732334px;}
.y3d{bottom:232.502820px;}
.y6e{bottom:234.098805px;}
.ycf{bottom:236.057099px;}
.y24f{bottom:240.831001px;}
.y150{bottom:241.501245px;}
.y1ff{bottom:241.503555px;}
.y16d{bottom:241.505625px;}
.ya3{bottom:241.510020px;}
.y21a{bottom:241.764780px;}
.y19b{bottom:241.931925px;}
.y186{bottom:242.091660px;}
.y1c4{bottom:246.019543px;}
.y22{bottom:246.959400px;}
.y3c{bottom:249.000214px;}
.yfb{bottom:250.525560px;}
.y1d9{bottom:250.526499px;}
.yf3{bottom:252.306030px;}
.y6d{bottom:253.573499px;}
.y24e{bottom:255.118022px;}
.yce{bottom:255.615795px;}
.y14f{bottom:260.975940px;}
.y1fe{bottom:260.978250px;}
.y16c{bottom:260.980320px;}
.ya2{bottom:260.984715px;}
.y219{bottom:261.323475px;}
.y19a{bottom:261.406619px;}
.y185{bottom:261.566355px;}
.y1c3{bottom:264.728509px;}
.y3b{bottom:265.497608px;}
.y21{bottom:267.963900px;}
.y24d{bottom:269.405044px;}
.y1d8{bottom:269.999856px;}
.yfa{bottom:270.084255px;}
.yf2{bottom:271.780725px;}
.y6c{bottom:273.132195px;}
.ycd{bottom:275.090490px;}
.y14e{bottom:280.450634px;}
.y1fd{bottom:280.452945px;}
.y16b{bottom:280.455015px;}
.ya1{bottom:280.459410px;}
.y218{bottom:280.798170px;}
.y199{bottom:280.965315px;}
.y184{bottom:281.125050px;}
.y3a{bottom:281.995001px;}
.y1c2{bottom:283.522674px;}
.y1d7{bottom:284.286877px;}
.y24c{bottom:288.878400px;}
.y20{bottom:288.968400px;}
.yf9{bottom:289.558950px;}
.yf1{bottom:291.255419px;}
.y6b{bottom:292.606890px;}
.y39{bottom:298.492395px;}
.y14d{bottom:300.009330px;}
.y1fc{bottom:300.011640px;}
.y16a{bottom:300.013711px;}
.ya0{bottom:300.018105px;}
.y217{bottom:300.272865px;}
.y198{bottom:300.440010px;}
.y183{bottom:300.599745px;}
.y1c1{bottom:302.230440px;}
.y24b{bottom:303.080223px;}
.ycc{bottom:303.578775px;}
.y1d6{bottom:306.481800px;}
.y1f{bottom:309.972900px;}
.yf0{bottom:310.814115px;}
.y6a{bottom:312.081584px;}
.y38{bottom:314.989789px;}
.y1c0{bottom:316.517462px;}
.y24a{bottom:317.367244px;}
.y14c{bottom:319.484025px;}
.y1fb{bottom:319.486335px;}
.y169{bottom:319.488405px;}
.y9f{bottom:319.492800px;}
.y216{bottom:319.831561px;}
.y197{bottom:319.914704px;}
.y182{bottom:320.074440px;}
.ycb{bottom:323.053469px;}
.y12c{bottom:326.462255px;}
.yef{bottom:330.288810px;}
.y1e{bottom:330.977400px;}
.y69{bottom:331.640280px;}
.y1bf{bottom:335.225228px;}
.y249{bottom:336.840601px;}
.y14b{bottom:338.958719px;}
.y1fa{bottom:338.961030px;}
.y168{bottom:338.963100px;}
.y215{bottom:339.306255px;}
.y196{bottom:339.389399px;}
.y181{bottom:339.549134px;}
.y37{bottom:340.501470px;}
.yca{bottom:342.612165px;}
.y9e{bottom:345.004650px;}
.y1be{bottom:349.512249px;}
.yee{bottom:349.763504px;}
.y68{bottom:351.114975px;}
.y248{bottom:351.127622px;}
.y1d{bottom:351.981900px;}
.y12b{bottom:353.419918px;}
.y36{bottom:356.998864px;}
.y14a{bottom:358.517415px;}
.y1f9{bottom:358.519725px;}
.y167{bottom:358.521796px;}
.y214{bottom:358.780950px;}
.y195{bottom:358.948095px;}
.y180{bottom:359.107830px;}
.y1d5{bottom:359.117790px;}
.yc9{bottom:362.086860px;}
.y247{bottom:365.329444px;}
.y1bd{bottom:368.985606px;}
.yed{bottom:369.322200px;}
.y67{bottom:370.589669px;}
.y12a{bottom:371.448492px;}
.y1c{bottom:372.986400px;}
.y35{bottom:373.496258px;}
.y149{bottom:377.992110px;}
.y1f8{bottom:377.994420px;}
.y166{bottom:377.996490px;}
.y194{bottom:378.422790px;}
.y17f{bottom:378.582525px;}
.y1d4{bottom:378.592485px;}
.y1bc{bottom:383.272627px;}
.y213{bottom:384.292800px;}
.y246{bottom:384.888000px;}
.yec{bottom:388.796895px;}
.y129{bottom:389.477067px;}
.y34{bottom:389.993651px;}
.y66{bottom:390.148365px;}
.yc8{bottom:390.575145px;}
.y1b{bottom:393.990900px;}
.y148{bottom:397.466804px;}
.y1f7{bottom:397.469115px;}
.y165{bottom:397.471185px;}
.y193{bottom:397.897484px;}
.y17e{bottom:398.057219px;}
.y1d3{bottom:398.067180px;}
.y245{bottom:399.090197px;}
.y9d{bottom:399.255989px;}
.y1bb{bottom:405.467550px;}
.y33{bottom:406.491045px;}
.y128{bottom:407.420443px;}
.yeb{bottom:408.271590px;}
.y65{bottom:409.623060px;}
.yc7{bottom:410.049839px;}
.y1a{bottom:414.995400px;}
.y147{bottom:417.025500px;}
.y1f6{bottom:417.027811px;}
.y164{bottom:417.029881px;}
.y192{bottom:417.456180px;}
.y17d{bottom:417.615915px;}
.y1d2{bottom:417.625875px;}
.y244{bottom:418.648752px;}
.y9c{bottom:418.814685px;}
.y32{bottom:422.988439px;}
.y127{bottom:425.449017px;}
.yea{bottom:427.830285px;}
.y64{bottom:429.097755px;}
.yc6{bottom:429.608535px;}
.y243{bottom:432.850575px;}
.y19{bottom:435.999900px;}
.y146{bottom:436.500195px;}
.y1f5{bottom:436.502505px;}
.y163{bottom:436.504575px;}
.y191{bottom:436.930875px;}
.y17c{bottom:437.090610px;}
.y1d1{bottom:437.100570px;}
.y9b{bottom:438.289380px;}
.y126{bottom:443.477592px;}
.y242{bottom:447.137596px;}
.ye9{bottom:447.304980px;}
.y31{bottom:448.500120px;}
.y63{bottom:448.572449px;}
.yc5{bottom:449.083230px;}
.y145{bottom:455.974890px;}
.y1f4{bottom:455.977200px;}
.y162{bottom:455.979270px;}
.y190{bottom:456.405569px;}
.y17b{bottom:456.565305px;}
.y1d0{bottom:456.575265px;}
.y18{bottom:457.004400px;}
.y9a{bottom:457.764074px;}
.y241{bottom:466.612153px;}
.ye8{bottom:466.779675px;}
.y62{bottom:468.131145px;}
.yc4{bottom:468.557924px;}
.y125{bottom:471.625640px;}
.y30{bottom:474.011801px;}
.y144{bottom:475.533585px;}
.y1f3{bottom:475.535896px;}
.y161{bottom:475.537966px;}
.y18f{bottom:475.964265px;}
.y17a{bottom:476.124000px;}
.y1cf{bottom:476.133961px;}
.y17{bottom:477.923400px;}
.y240{bottom:480.899174px;}
.y99{bottom:486.337860px;}
.ye7{bottom:486.338370px;}
.y61{bottom:487.605840px;}
.yc3{bottom:488.116620px;}
.y124{bottom:490.334606px;}
.y143{bottom:495.008280px;}
.y1f2{bottom:495.010590px;}
.y160{bottom:495.012661px;}
.y23f{bottom:495.100997px;}
.y18e{bottom:495.438960px;}
.y179{bottom:495.598695px;}
.y1ce{bottom:495.608655px;}
.y16{bottom:498.927900px;}
.y2f{bottom:499.523482px;}
.y277{bottom:505.047825px;}
.y98{bottom:505.812555px;}
.ye6{bottom:505.813065px;}
.y60{bottom:507.080534px;}
.yc2{bottom:507.591315px;}
.y123{bottom:509.043573px;}
.y1cc{bottom:512.617200px;}
.y142{bottom:514.482975px;}
.y1f1{bottom:514.485285px;}
.y15f{bottom:514.487355px;}
.y23e{bottom:514.659552px;}
.y18d{bottom:514.913654px;}
.y178{bottom:515.073390px;}
.y1cd{bottom:515.083350px;}
.y276{bottom:519.334847px;}
.y15{bottom:519.932400px;}
.y2e{bottom:525.035163px;}
.ye5{bottom:525.287760px;}
.y5f{bottom:526.639230px;}
.yc1{bottom:527.066010px;}
.y122{bottom:527.837738px;}
.y23d{bottom:528.861375px;}
.y141{bottom:533.957669px;}
.y1f0{bottom:533.959980px;}
.y15e{bottom:533.962050px;}
.y97{bottom:534.300840px;}
.y18c{bottom:534.472350px;}
.y177{bottom:534.632085px;}
.y275{bottom:538.808203px;}
.y14{bottom:540.936900px;}
.y2d{bottom:541.532557px;}
.ye4{bottom:544.762454px;}
.y5e{bottom:546.113925px;}
.y121{bottom:546.546704px;}
.yc0{bottom:546.624705px;}
.y23c{bottom:548.334731px;}
.y274{bottom:553.095225px;}
.y140{bottom:553.516365px;}
.y1ef{bottom:553.518675px;}
.y96{bottom:553.775534px;}
.y176{bottom:554.106780px;}
.y2c{bottom:558.029951px;}
.y15d{bottom:559.473900px;}
.y13{bottom:561.941400px;}
.y23b{bottom:562.621753px;}
.ye3{bottom:564.321150px;}
.y120{bottom:565.340869px;}
.y5d{bottom:565.588619px;}
.ybf{bottom:566.099400px;}
.y1ba{bottom:571.290597px;}
.y273{bottom:572.568581px;}
.y13f{bottom:572.991060px;}
.y1ee{bottom:572.993370px;}
.y175{bottom:573.581475px;}
.y23a{bottom:582.095109px;}
.y95{bottom:582.263819px;}
.y12{bottom:582.945900px;}
.y2b{bottom:583.541632px;}
.y11f{bottom:584.049835px;}
.y5c{bottom:585.147315px;}
.ybe{bottom:585.574095px;}
.ye2{bottom:589.832850px;}
.y272{bottom:592.041938px;}
.y13e{bottom:592.465754px;}
.y1ed{bottom:592.468065px;}
.y174{bottom:593.056169px;}
.y1b9{bottom:593.826316px;}
.y239{bottom:596.382131px;}
.y2a{bottom:600.039026px;}
.y94{bottom:601.822515px;}
.y11e{bottom:602.840044px;}
.y11{bottom:603.950400px;}
.y5b{bottom:604.622010px;}
.ybd{bottom:605.132790px;}
.y271{bottom:606.328959px;}
.y238{bottom:610.583953px;}
.y13d{bottom:612.024450px;}
.y1ec{bottom:612.026761px;}
.y15c{bottom:612.614865px;}
.y1b8{bottom:612.620481px;}
.y29{bottom:616.536420px;}
.y270{bottom:620.615981px;}
.y93{bottom:621.297210px;}
.y11d{bottom:621.549010px;}
.y5a{bottom:624.096704px;}
.ybc{bottom:624.607485px;}
.y10{bottom:624.954900px;}
.y237{bottom:630.142509px;}
.y1b7{bottom:631.329447px;}
.y13c{bottom:631.499145px;}
.y1eb{bottom:631.501455px;}
.y15b{bottom:632.089560px;}
.y28{bottom:633.033813px;}
.ye1{bottom:633.621075px;}
.y26f{bottom:640.089337px;}
.y11c{bottom:640.343175px;}
.y92{bottom:640.771904px;}
.y59{bottom:643.655400px;}
.ybb{bottom:644.082180px;}
.y236{bottom:644.344331px;}
.yf{bottom:645.959400px;}
.y27{bottom:649.531207px;}
.y1b6{bottom:650.123612px;}
.y13b{bottom:650.973840px;}
.y1ea{bottom:650.976150px;}
.y15a{bottom:651.564254px;}
.ye0{bottom:653.095770px;}
.y26e{bottom:654.291160px;}
.y11b{bottom:659.052141px;}
.y91{bottom:660.330600px;}
.y58{bottom:663.130095px;}
.yba{bottom:663.556874px;}
.y235{bottom:663.902887px;}
.ye{bottom:666.963900px;}
.y26d{bottom:668.578181px;}
.y1b5{bottom:668.831378px;}
.y13a{bottom:670.532535px;}
.y159{bottom:671.122950px;}
.y26{bottom:674.106900px;}
.y1e9{bottom:676.488000px;}
.y11a{bottom:677.846306px;}
.y234{bottom:678.104709px;}
.ydf{bottom:681.584055px;}
.y57{bottom:682.604790px;}
.yb9{bottom:683.115570px;}
.y1b4{bottom:683.118400px;}
.y90{bottom:685.757250px;}
.yd{bottom:687.968400px;}
.y26c{bottom:688.051538px;}
.y139{bottom:690.007230px;}
.y158{bottom:690.597645px;}
.y233{bottom:692.391731px;}
.y119{bottom:696.555273px;}
.yde{bottom:701.058749px;}
.y1b3{bottom:701.827366px;}
.y56{bottom:702.079484px;}
.y26b{bottom:702.338559px;}
.yb8{bottom:702.590265px;}
.y138{bottom:709.481925px;}
.y157{bottom:710.072340px;}
.y232{bottom:711.865087px;}
.y118{bottom:715.349438px;}
.y1e8{bottom:718.921665px;}
.ydd{bottom:720.617445px;}
.y1b2{bottom:720.620331px;}
.yc{bottom:720.963600px;}
.y55{bottom:721.638180px;}
.y26a{bottom:721.813116px;}
.yb7{bottom:722.064959px;}
.y231{bottom:726.152109px;}
.y137{bottom:728.956619px;}
.y8f{bottom:729.631035px;}
.y117{bottom:734.058404px;}
.y1b1{bottom:734.822153px;}
.y269{bottom:736.100137px;}
.y1e7{bottom:738.396360px;}
.ydc{bottom:740.092140px;}
.y54{bottom:741.112875px;}
.yb6{bottom:741.623655px;}
.y230{bottom:745.625465px;}
.y136{bottom:748.515315px;}
.y8e{bottom:749.105730px;}
.y116{bottom:752.852569px;}
.y1b0{bottom:753.616318px;}
.y268{bottom:755.574694px;}
.y1e6{bottom:757.955055px;}
.ydb{bottom:759.566834px;}
.y53{bottom:760.587569px;}
.yb5{bottom:761.098350px;}
.y22f{bottom:765.098822px;}
.y1af{bottom:767.818141px;}
.y135{bottom:767.990010px;}
.y8d{bottom:768.580425px;}
.y267{bottom:769.861715px;}
.y115{bottom:771.561535px;}
.y1e4{bottom:774.963600px;}
.y1e3{bottom:777.429360px;}
.y1e5{bottom:777.429750px;}
.yda{bottom:779.125530px;}
.y22e{bottom:779.385843px;}
.y52{bottom:780.146265px;}
.yb4{bottom:780.573045px;}
.yb{bottom:783.977438px;}
.y266{bottom:784.063538px;}
.y1ae{bottom:786.612306px;}
.y134{bottom:787.464704px;}
.y8c{bottom:788.055119px;}
.y113{bottom:790.351459px;}
.y114{bottom:790.355700px;}
.y22d{bottom:793.587666px;}
.y1e2{bottom:796.904054px;}
.yd9{bottom:798.600225px;}
.ya{bottom:798.944850px;}
.y51{bottom:799.620960px;}
.yb3{bottom:800.131740px;}
.y25{bottom:802.091100px;}
.y265{bottom:803.622093px;}
.y1ad{bottom:805.321272px;}
.y133{bottom:807.023400px;}
.y8b{bottom:807.613815px;}
.y112{bottom:809.060425px;}
.y22c{bottom:813.146221px;}
.y1e1{bottom:816.462750px;}
.y264{bottom:817.823916px;}
.yd8{bottom:818.074920px;}
.y50{bottom:819.095654px;}
.yb2{bottom:819.606435px;}
.y1ac{bottom:824.115437px;}
.y8a{bottom:827.088510px;}
.y22b{bottom:827.348044px;}
.y111{bottom:827.854590px;}
.y9{bottom:828.963675px;}
.y263{bottom:832.110937px;}
.y132{bottom:832.535100px;}
.yd7{bottom:837.633615px;}
.y4f{bottom:838.654350px;}
.yb1{bottom:839.081130px;}
.y1ab{bottom:842.824403px;}
.y8{bottom:843.931088px;}
.y89{bottom:846.563204px;}
.y110{bottom:846.563556px;}
.y22a{bottom:846.906599px;}
.y262{bottom:851.584294px;}
.y211{bottom:853.368543px;}
.yd6{bottom:857.108310px;}
.y4e{bottom:858.129045px;}
.y7{bottom:858.982500px;}
.y229{bottom:861.108422px;}
.y1aa{bottom:861.618568px;}
.y10f{bottom:865.357722px;}
.y261{bottom:865.871315px;}
.y88{bottom:866.121900px;}
.yb0{bottom:867.569415px;}
.y210{bottom:875.819062px;}
.yd5{bottom:876.583005px;}
.y4d{bottom:877.603740px;}
.y1a9{bottom:880.327534px;}
.y228{bottom:880.581778px;}
.y130{bottom:883.133550px;}
.y10e{bottom:884.066688px;}
.y260{bottom:885.344672px;}
.y87{bottom:885.596595px;}
.y12f{bottom:885.599055px;}
.y131{bottom:885.599700px;}
.y5{bottom:885.939900px;}
.yaf{bottom:887.128110px;}
.y6{bottom:891.977850px;}
.y20f{bottom:894.613227px;}
.y227{bottom:894.868800px;}
.y4c{bottom:897.078434px;}
.y1a8{bottom:899.121699px;}
.y12d{bottom:902.607600px;}
.y10d{bottom:902.860853px;}
.y25f{bottom:904.818028px;}
.y86{bottom:905.071290px;}
.y12e{bottom:905.073750px;}
.yae{bottom:906.602805px;}
.y226{bottom:909.155821px;}
.y20e{bottom:913.322193px;}
.y4b{bottom:916.637130px;}
.y1a7{bottom:917.830666px;}
.y25e{bottom:919.105050px;}
.y10c{bottom:921.569819px;}
.y7d{bottom:922.078749px;}
.y4{bottom:923.440575px;}
.y85{bottom:924.629985px;}
.yad{bottom:926.077500px;}
.y225{bottom:928.629178px;}
.y20d{bottom:932.116359px;}
.y25d{bottom:933.306872px;}
.y4a{bottom:936.111825px;}
.y1a6{bottom:936.624831px;}
.y7c{bottom:938.576143px;}
.y10b{bottom:940.362784px;}
.y224{bottom:942.831000px;}
.y84{bottom:944.104680px;}
.y20c{bottom:950.825325px;}
.y25c{bottom:952.865428px;}
.yac{bottom:954.565784px;}
.y1a5{bottom:955.333797px;}
.y49{bottom:955.586519px;}
.y223{bottom:957.118022px;}
.y10a{bottom:959.071750px;}
.y3{bottom:960.943762px;}
.y83{bottom:963.579375px;}
.y7b{bottom:964.087824px;}
.y25b{bottom:967.067250px;}
.y20b{bottom:969.619490px;}
.yab{bottom:974.124480px;}
.y1a4{bottom:974.126762px;}
.y48{bottom:975.145215px;}
.y222{bottom:976.591378px;}
.y109{bottom:978.546307px;}
.y7a{bottom:980.585218px;}
.y25a{bottom:981.354272px;}
.y82{bottom:983.138070px;}
.y20a{bottom:988.328456px;}
.y1a3{bottom:988.328584px;}
.y221{bottom:990.878400px;}
.yaa{bottom:993.599175px;}
.y47{bottom:994.619910px;}
.y79{bottom:997.082611px;}
.y108{bottom:998.104862px;}
.y105{bottom:998.106062px;}
.y2{bottom:998.446950px;}
.y259{bottom:1000.827628px;}
.y81{bottom:1002.612765px;}
.y220{bottom:1005.080222px;}
.y209{bottom:1007.121421px;}
.y1a2{bottom:1007.121549px;}
.y107{bottom:1012.306685px;}
.y104{bottom:1012.307885px;}
.y78{bottom:1013.580005px;}
.y46{bottom:1014.094604px;}
.y258{bottom:1015.114650px;}
.y80{bottom:1022.087460px;}
.y21f{bottom:1024.638778px;}
.y106{bottom:1026.593706px;}
.y208{bottom:1026.594778px;}
.y103{bottom:1026.594906px;}
.y77{bottom:1030.077399px;}
.y45{bottom:1033.653300px;}
.y257{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y206{bottom:1038.840600px;}
.y207{bottom:1040.796600px;}
.y1a1{bottom:1040.796729px;}
.y7f{bottom:1041.562154px;}
.y76{bottom:1046.574793px;}
.y102{bottom:1048.789829px;}
.y44{bottom:1059.079950px;}
.y7e{bottom:1061.120850px;}
.y75{bottom:1063.072186px;}
.y101{bottom:1063.076850px;}
.y74{bottom:1118.692500px;}
.he{height:23.996250px;}
.h4{height:26.996400px;}
.hd{height:28.477152px;}
.h8{height:34.943563px;}
.hb{height:35.999550px;}
.h1{height:37.199535px;}
.hc{height:37.215359px;}
.h3{height:40.500000px;}
.h6{height:44.175000px;}
.h7{height:48.660487px;}
.h9{height:53.999550px;}
.ha{height:55.799535px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:54.000000px;}
.x57{left:62.002700px;}
.x38{left:65.056662px;}
.xb{left:71.433000px;}
.x52{left:73.052162px;}
.x47{left:75.857727px;}
.x53{left:77.219710px;}
.xa{left:84.018900px;}
.x5d{left:86.315596px;}
.x58{left:89.555556px;}
.x48{left:93.291109px;}
.x5c{left:104.429370px;}
.x54{left:106.643342px;}
.x21{left:138.282146px;}
.x1f{left:140.402520px;}
.x24{left:143.553686px;}
.x23{left:156.730721px;}
.x20{left:169.913751px;}
.x3a{left:186.916339px;}
.x4e{left:188.106724px;}
.x49{left:193.806652px;}
.x55{left:195.084636px;}
.x46{left:197.463007px;}
.x4b{left:200.698166px;}
.x59{left:205.294109px;}
.x39{left:218.295946px;}
.x29{left:219.911126px;}
.x1e{left:241.598455px;}
.xf{left:243.043237px;}
.x4a{left:252.483519px;}
.x56{left:253.676304px;}
.x2a{left:264.641767px;}
.x3b{left:268.978513px;}
.x4f{left:270.084899px;}
.x5e{left:272.892864px;}
.x2b{left:280.543968px;}
.x22{left:294.406200px;}
.x1{left:300.018750px;}
.x66{left:306.651900px;}
.xe{left:311.753367px;}
.xc{left:317.963429px;}
.x3c{left:323.489031px;}
.x50{left:324.510219px;}
.x67{left:331.483190px;}
.x2c{left:333.948101px;}
.x10{left:336.075674px;}
.x3d{left:338.966438px;}
.x51{left:339.987625px;}
.x2d{left:349.425507px;}
.x2{left:358.780950px;}
.x3{left:371.962050px;}
.x37{left:394.667342px;}
.x11{left:396.708516px;}
.x3e{left:398.748491px;}
.x2e{left:407.336783px;}
.x12{left:412.185923px;}
.x3f{left:413.460307px;}
.x2f{left:422.048599px;}
.x13{left:466.950838px;}
.x4{left:468.821850px;}
.x14{left:476.475119px;}
.x5{left:482.002950px;}
.x15{left:489.316158px;}
.x40{left:503.346383px;}
.x5f{left:508.027525px;}
.x30{left:509.893501px;}
.x41{left:523.416132px;}
.x60{left:525.885701px;}
.x31{left:529.963250px;}
.x27{left:533.877000px;}
.x28{left:543.401400px;}
.x16{left:548.588218px;}
.x17{left:568.657967px;}
.xd{left:578.522700px;}
.x42{left:581.412607px;}
.x32{left:586.769340px;}
.x43{left:596.975213px;}
.x6{left:601.228200px;}
.x33{left:602.246747px;}
.x61{left:609.732150px;}
.x7{left:614.409300px;}
.x62{left:617.895900px;}
.x18{left:633.287959px;}
.x63{left:638.985636px;}
.x19{left:648.765365px;}
.x4c{left:656.418750px;}
.x44{left:662.965988px;}
.x4d{left:665.092650px;}
.x34{left:666.111149px;}
.x45{left:674.531443px;}
.x35{left:677.676604px;}
.x1a{left:707.612630px;}
.x25{left:724.790400px;}
.x26{left:730.998300px;}
.x64{left:744.435518px;}
.x8{left:751.577700px;}
.x65{left:767.991224px;}
.x36{left:774.876589px;}
.x1c{left:804.132223px;}
.x1b{left:808.978963px;}
.x1d{left:814.761690px;}
.x5a{left:816.292650px;}
.x5b{left:821.735100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.015200pt;}
.ls2c{letter-spacing:0.029866pt;}
.ls2a{letter-spacing:0.034133pt;}
.ls0{letter-spacing:0.073590pt;}
.lse{letter-spacing:0.096001pt;}
.ls10{letter-spacing:0.101334pt;}
.ls19{letter-spacing:0.136532pt;}
.ls6{letter-spacing:0.146933pt;}
.ls2b{letter-spacing:0.149335pt;}
.ls9{letter-spacing:0.154668pt;}
.lsc{letter-spacing:0.165335pt;}
.ls17{letter-spacing:0.242204pt;}
.ls15{letter-spacing:0.273063pt;}
.ls28{letter-spacing:0.314670pt;}
.ls3{letter-spacing:9.104953pt;}
.ls2{letter-spacing:9.122019pt;}
.ls14{letter-spacing:9.207352pt;}
.ls7{letter-spacing:9.378016pt;}
.ls2d{letter-spacing:9.446282pt;}
.ls18{letter-spacing:9.706545pt;}
.ls5{letter-spacing:10.898400pt;}
.ls13{letter-spacing:11.589449pt;}
.lsb{letter-spacing:11.653450pt;}
.lsf{letter-spacing:11.888119pt;}
.ls12{letter-spacing:11.893452pt;}
.ls29{letter-spacing:11.914786pt;}
.lsd{letter-spacing:11.957453pt;}
.ls1{letter-spacing:18.777365pt;}
.ls11{letter-spacing:21.194879pt;}
.ls21{letter-spacing:54.757716pt;}
.ls1b{letter-spacing:55.060645pt;}
.ls24{letter-spacing:58.388603pt;}
.ls23{letter-spacing:58.691533pt;}
.ls1c{letter-spacing:62.015225pt;}
.ls27{letter-spacing:62.318154pt;}
.ls1f{letter-spacing:71.388974pt;}
.ls25{letter-spacing:75.621455pt;}
.ls16{letter-spacing:77.737695pt;}
.ls22{letter-spacing:78.343554pt;}
.ls1d{letter-spacing:78.646484pt;}
.ls20{letter-spacing:92.252713pt;}
.ls26{letter-spacing:94.066024pt;}
.ls1e{letter-spacing:101.929393pt;}
.ls1a{letter-spacing:107.373591pt;}
.wsa4{word-spacing:-101.972059pt;}
.ws9b{word-spacing:-96.835056pt;}
.wsb2{word-spacing:-94.108690pt;}
.wsa6{word-spacing:-92.295380pt;}
.wsa3{word-spacing:-78.689150pt;}
.wsaa{word-spacing:-78.386220pt;}
.wsa0{word-spacing:-77.780361pt;}
.wsad{word-spacing:-75.664121pt;}
.wsa5{word-spacing:-71.431640pt;}
.wsb3{word-spacing:-62.360820pt;}
.wsa2{word-spacing:-62.057891pt;}
.wsab{word-spacing:-58.734199pt;}
.wsac{word-spacing:-58.431270pt;}
.wsa1{word-spacing:-55.103311pt;}
.wsa7{word-spacing:-54.800382pt;}
.wsbe{word-spacing:-11.968120pt;}
.ws23{word-spacing:-9.420682pt;}
.ws11c{word-spacing:-0.063999pt;}
.ws4d{word-spacing:-0.053334pt;}
.ws6{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.042666pt;}
.ws5{word-spacing:-0.031996pt;}
.ws42{word-spacing:0.000000pt;}
.ws3a{word-spacing:8.511894pt;}
.ws35{word-spacing:8.520427pt;}
.ws3d{word-spacing:8.554560pt;}
.ws32{word-spacing:8.567360pt;}
.ws2c{word-spacing:8.575893pt;}
.ws10e{word-spacing:8.588693pt;}
.ws3e{word-spacing:8.618559pt;}
.ws66{word-spacing:8.631359pt;}
.ws133{word-spacing:8.652692pt;}
.ws29{word-spacing:8.661225pt;}
.wsa{word-spacing:8.703891pt;}
.wsc{word-spacing:8.725224pt;}
.ws39{word-spacing:8.729491pt;}
.ws25{word-spacing:8.733757pt;}
.ws135{word-spacing:8.738024pt;}
.ws28{word-spacing:8.750824pt;}
.ws40{word-spacing:8.755091pt;}
.ws27{word-spacing:8.759357pt;}
.ws26{word-spacing:8.767890pt;}
.ws30{word-spacing:8.776424pt;}
.ws2e{word-spacing:8.784957pt;}
.ws134{word-spacing:8.789223pt;}
.ws2f{word-spacing:8.793490pt;}
.ws2d{word-spacing:8.810557pt;}
.ws67{word-spacing:8.814823pt;}
.ws2a{word-spacing:8.819090pt;}
.ws6a{word-spacing:8.823356pt;}
.wsb{word-spacing:8.827623pt;}
.ws13e{word-spacing:8.836156pt;}
.ws3f{word-spacing:8.853223pt;}
.ws12d{word-spacing:8.857489pt;}
.ws38{word-spacing:8.870289pt;}
.ws12f{word-spacing:8.874556pt;}
.ws125{word-spacing:8.878822pt;}
.ws3b{word-spacing:8.887356pt;}
.ws136{word-spacing:8.895889pt;}
.ws69{word-spacing:8.921488pt;}
.ws41{word-spacing:8.925755pt;}
.wsde{word-spacing:8.934288pt;}
.ws140{word-spacing:8.938555pt;}
.ws124{word-spacing:8.955621pt;}
.ws37{word-spacing:8.959888pt;}
.ws126{word-spacing:8.964155pt;}
.ws12e{word-spacing:8.972688pt;}
.ws34{word-spacing:8.981221pt;}
.ws68{word-spacing:8.989754pt;}
.ws123{word-spacing:8.994021pt;}
.ws12b{word-spacing:8.998288pt;}
.ws132{word-spacing:9.006821pt;}
.ws13b{word-spacing:9.023887pt;}
.ws13c{word-spacing:9.040954pt;}
.ws22{word-spacing:9.045220pt;}
.ws24{word-spacing:9.049487pt;}
.ws65{word-spacing:9.058020pt;}
.ws121{word-spacing:9.062287pt;}
.ws102{word-spacing:9.066553pt;}
.ws3c{word-spacing:9.070820pt;}
.ws131{word-spacing:9.075087pt;}
.ws13a{word-spacing:9.083620pt;}
.ws139{word-spacing:9.092153pt;}
.wsb6{word-spacing:9.096420pt;}
.ws137{word-spacing:9.100686pt;}
.ws142{word-spacing:9.122019pt;}
.ws130{word-spacing:9.126286pt;}
.ws120{word-spacing:9.130553pt;}
.ws122{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws138{word-spacing:9.156152pt;}
.ws93{word-spacing:9.160419pt;}
.ws141{word-spacing:9.168952pt;}
.ws128{word-spacing:9.181752pt;}
.ws13d{word-spacing:9.190285pt;}
.wsfd{word-spacing:9.194552pt;}
.ws129{word-spacing:9.198818pt;}
.ws11f{word-spacing:9.203085pt;}
.wsed{word-spacing:9.211618pt;}
.ws111{word-spacing:9.228685pt;}
.wsec{word-spacing:9.232951pt;}
.ws33{word-spacing:9.267084pt;}
.ws36{word-spacing:9.284151pt;}
.wse2{word-spacing:9.296950pt;}
.ws31{word-spacing:9.301217pt;}
.ws11e{word-spacing:9.305484pt;}
.ws12a{word-spacing:9.331083pt;}
.wsb9{word-spacing:9.339617pt;}
.ws10f{word-spacing:9.356683pt;}
.ws127{word-spacing:9.360950pt;}
.wse1{word-spacing:9.365216pt;}
.wsb5{word-spacing:9.369483pt;}
.ws13f{word-spacing:9.395083pt;}
.wse5{word-spacing:9.399349pt;}
.ws2b{word-spacing:9.403616pt;}
.ws98{word-spacing:9.407882pt;}
.ws99{word-spacing:9.424949pt;}
.ws104{word-spacing:9.429215pt;}
.wsea{word-spacing:9.437749pt;}
.wseb{word-spacing:9.467615pt;}
.ws94{word-spacing:9.471882pt;}
.ws95{word-spacing:9.476148pt;}
.wse6{word-spacing:9.480415pt;}
.ws9a{word-spacing:9.497481pt;}
.ws115{word-spacing:9.501748pt;}
.wsb0{word-spacing:9.510281pt;}
.wse7{word-spacing:9.535881pt;}
.wsf3{word-spacing:9.544414pt;}
.wsaf{word-spacing:9.548681pt;}
.wsb7{word-spacing:9.570014pt;}
.wsb1{word-spacing:9.574280pt;}
.wsef{word-spacing:9.595613pt;}
.wsa9{word-spacing:9.599880pt;}
.ws113{word-spacing:9.604147pt;}
.ws97{word-spacing:9.608413pt;}
.wse3{word-spacing:9.638280pt;}
.wsfb{word-spacing:9.668146pt;}
.ws110{word-spacing:9.672412pt;}
.ws9f{word-spacing:9.680946pt;}
.ws96{word-spacing:9.702279pt;}
.wse9{word-spacing:9.715079pt;}
.wse8{word-spacing:9.736412pt;}
.wse4{word-spacing:9.766278pt;}
.ws103{word-spacing:9.774811pt;}
.wsdf{word-spacing:9.804677pt;}
.wse0{word-spacing:9.834544pt;}
.wsb8{word-spacing:9.838810pt;}
.ws4{word-spacing:10.353600pt;}
.ws9{word-spacing:10.444800pt;}
.ws7{word-spacing:10.497600pt;}
.ws11{word-spacing:10.533600pt;}
.ws8{word-spacing:10.574400pt;}
.wsf{word-spacing:10.599467pt;}
.ws10{word-spacing:10.751467pt;}
.ws18{word-spacing:10.898400pt;}
.ws1b{word-spacing:10.913600pt;}
.ws88{word-spacing:10.944109pt;}
.ws1c{word-spacing:10.954133pt;}
.ws21{word-spacing:10.964267pt;}
.ws1e{word-spacing:10.979467pt;}
.wse{word-spacing:10.984533pt;}
.wscf{word-spacing:11.040110pt;}
.ws15{word-spacing:11.040267pt;}
.ws1a{word-spacing:11.060533pt;}
.ws19{word-spacing:11.065600pt;}
.ws1f{word-spacing:11.126400pt;}
.ws13{word-spacing:11.136533pt;}
.ws14{word-spacing:11.212533pt;}
.wsd0{word-spacing:11.216112pt;}
.ws17{word-spacing:11.273333pt;}
.ws46{word-spacing:11.280113pt;}
.ws1d{word-spacing:11.283467pt;}
.wsd1{word-spacing:11.285446pt;}
.ws12{word-spacing:11.288533pt;}
.wsc1{word-spacing:11.349447pt;}
.ws16{word-spacing:11.359467pt;}
.ws73{word-spacing:11.408114pt;}
.wsd6{word-spacing:11.413447pt;}
.ws5d{word-spacing:11.445448pt;}
.ws20{word-spacing:11.450667pt;}
.ws63{word-spacing:11.472115pt;}
.ws64{word-spacing:11.498782pt;}
.wsdc{word-spacing:11.504115pt;}
.ws60{word-spacing:11.514782pt;}
.ws54{word-spacing:11.520115pt;}
.ws74{word-spacing:11.530782pt;}
.wsda{word-spacing:11.536115pt;}
.ws56{word-spacing:11.541449pt;}
.wsc3{word-spacing:11.546782pt;}
.ws57{word-spacing:11.552116pt;}
.ws43{word-spacing:11.562782pt;}
.wsff{word-spacing:11.568116pt;}
.wsc4{word-spacing:11.573449pt;}
.ws4b{word-spacing:11.578782pt;}
.ws5a{word-spacing:11.584116pt;}
.ws52{word-spacing:11.589449pt;}
.ws72{word-spacing:11.594783pt;}
.ws61{word-spacing:11.600116pt;}
.ws6d{word-spacing:11.605449pt;}
.ws7f{word-spacing:11.610783pt;}
.ws6e{word-spacing:11.616116pt;}
.ws82{word-spacing:11.621450pt;}
.ws51{word-spacing:11.626783pt;}
.wscb{word-spacing:11.632116pt;}
.wsbd{word-spacing:11.637450pt;}
.wsc7{word-spacing:11.642783pt;}
.ws59{word-spacing:11.648116pt;}
.ws47{word-spacing:11.653450pt;}
.ws78{word-spacing:11.658783pt;}
.wsd8{word-spacing:11.664117pt;}
.ws45{word-spacing:11.669450pt;}
.ws48{word-spacing:11.674783pt;}
.ws101{word-spacing:11.680117pt;}
.ws8d{word-spacing:11.685450pt;}
.ws10d{word-spacing:11.696117pt;}
.wsd5{word-spacing:11.701450pt;}
.wsc6{word-spacing:11.706784pt;}
.ws7a{word-spacing:11.712117pt;}
.ws62{word-spacing:11.717451pt;}
.wsdd{word-spacing:11.722784pt;}
.ws5f{word-spacing:11.728117pt;}
.ws70{word-spacing:11.738784pt;}
.ws71{word-spacing:11.744117pt;}
.wsf1{word-spacing:11.749451pt;}
.ws4a{word-spacing:11.754784pt;}
.ws80{word-spacing:11.760118pt;}
.ws5e{word-spacing:11.765451pt;}
.wsdb{word-spacing:11.770784pt;}
.ws7e{word-spacing:11.776118pt;}
.ws7c{word-spacing:11.781451pt;}
.ws86{word-spacing:11.786785pt;}
.wsd3{word-spacing:11.792118pt;}
.ws87{word-spacing:11.802785pt;}
.ws84{word-spacing:11.808118pt;}
.ws50{word-spacing:11.813451pt;}
.ws6b{word-spacing:11.818785pt;}
.wsca{word-spacing:11.824118pt;}
.ws53{word-spacing:11.829452pt;}
.wsc5{word-spacing:11.834785pt;}
.ws8a{word-spacing:11.840118pt;}
.wsbb{word-spacing:11.845452pt;}
.wsd9{word-spacing:11.850785pt;}
.ws44{word-spacing:11.856119pt;}
.ws75{word-spacing:11.861452pt;}
.wsc9{word-spacing:11.866785pt;}
.wsfe{word-spacing:11.872119pt;}
.ws83{word-spacing:11.877452pt;}
.ws4e{word-spacing:11.882785pt;}
.ws11a{word-spacing:11.888119pt;}
.wsbc{word-spacing:11.893452pt;}
.ws5b{word-spacing:11.898786pt;}
.wscd{word-spacing:11.909452pt;}
.ws100{word-spacing:11.914786pt;}
.ws55{word-spacing:11.920119pt;}
.ws119{word-spacing:11.930786pt;}
.ws85{word-spacing:11.936119pt;}
.wscc{word-spacing:11.941453pt;}
.ws58{word-spacing:11.946786pt;}
.ws5c{word-spacing:11.952120pt;}
.ws81{word-spacing:11.957453pt;}
.wsd4{word-spacing:11.962786pt;}
.ws8f{word-spacing:11.968120pt;}
.ws49{word-spacing:11.973453pt;}
.ws89{word-spacing:11.978786pt;}
.ws92{word-spacing:11.994787pt;}
.wsd2{word-spacing:12.005453pt;}
.ws90{word-spacing:12.010787pt;}
.ws6c{word-spacing:12.016120pt;}
.ws8c{word-spacing:12.021454pt;}
.ws8e{word-spacing:12.026787pt;}
.wsc2{word-spacing:12.032120pt;}
.wsc8{word-spacing:12.042787pt;}
.wsce{word-spacing:12.058787pt;}
.ws77{word-spacing:12.069454pt;}
.wsc0{word-spacing:12.090788pt;}
.wsd7{word-spacing:12.128121pt;}
.ws6f{word-spacing:12.149455pt;}
.wsba{word-spacing:12.154788pt;}
.wsf2{word-spacing:12.160122pt;}
.wsf0{word-spacing:12.170788pt;}
.ws11b{word-spacing:12.197455pt;}
.ws7b{word-spacing:12.256123pt;}
.ws4f{word-spacing:12.282789pt;}
.ws4c{word-spacing:12.293456pt;}
.ws7d{word-spacing:12.304123pt;}
.ws76{word-spacing:13.734286pt;}
.ws79{word-spacing:13.798285pt;}
.ws8b{word-spacing:13.913484pt;}
.ws91{word-spacing:13.919884pt;}
.wsbf{word-spacing:14.131082pt;}
.ws1{word-spacing:23.253450pt;}
.ws3{word-spacing:23.381450pt;}
.ws2{word-spacing:23.434784pt;}
.ws11d{word-spacing:53.174802pt;}
.ws12c{word-spacing:53.208935pt;}
.ws9c{word-spacing:54.889981pt;}
.wsb4{word-spacing:55.022246pt;}
.ws106{word-spacing:56.464361pt;}
.wsf5{word-spacing:56.767290pt;}
.ws9e{word-spacing:57.441415pt;}
.wsae{word-spacing:57.744345pt;}
.ws9d{word-spacing:71.350575pt;}
.ws109{word-spacing:74.606001pt;}
.wsf8{word-spacing:75.211860pt;}
.wsa8{word-spacing:78.305155pt;}
.wsee{word-spacing:115.091895pt;}
.ws107{word-spacing:129.636780pt;}
.wsf6{word-spacing:130.238372pt;}
.ws108{word-spacing:140.520910pt;}
.wsf7{word-spacing:141.126769pt;}
.wsf4{word-spacing:150.632784pt;}
.ws10a{word-spacing:153.824211pt;}
.wsf9{word-spacing:154.430070pt;}
.wsfc{word-spacing:156.951638pt;}
.ws105{word-spacing:166.124857pt;}
.ws10c{word-spacing:179.897485pt;}
.ws10b{word-spacing:196.153281pt;}
.wsfa{word-spacing:197.062070pt;}
.ws112{word-spacing:296.235230pt;}
.ws116{word-spacing:307.725220pt;}
.ws118{word-spacing:319.518139pt;}
.ws114{word-spacing:331.276926pt;}
.ws117{word-spacing:343.069845pt;}
._22{margin-left:-102.509652pt;}
._24{margin-left:-101.178469pt;}
._3a{margin-left:-94.445753pt;}
._25{margin-left:-92.551376pt;}
._21{margin-left:-79.713137pt;}
._1d{margin-left:-78.364887pt;}
._28{margin-left:-77.426232pt;}
._2c{margin-left:-75.647054pt;}
._23{margin-left:-71.657771pt;}
._29{margin-left:-63.133077pt;}
._20{margin-left:-61.311234pt;}
._2a{margin-left:-58.358737pt;}
._2b{margin-left:-57.270751pt;}
._1f{margin-left:-55.858502pt;}
._1e{margin-left:-54.527318pt;}
._f{margin-left:-12.095849pt;}
._5{margin-left:-9.378016pt;}
._10{margin-left:-7.859102pt;}
._6{margin-left:-4.817006pt;}
._7{margin-left:-3.246893pt;}
._9{margin-left:-2.316771pt;}
._8{margin-left:-1.100786pt;}
._2{width:1.124800pt;}
._11{width:3.319425pt;}
._a{width:8.413761pt;}
._0{width:9.740678pt;}
._c{width:11.002777pt;}
._1{width:12.048533pt;}
._b{width:13.051342pt;}
._d{width:26.624266pt;}
._3{width:41.373349pt;}
._1b{width:54.638250pt;}
._31{width:56.575293pt;}
._14{width:57.518214pt;}
._3c{width:58.469669pt;}
._15{width:64.468527pt;}
._34{width:70.181523pt;}
._18{width:71.393241pt;}
._16{width:78.518485pt;}
._13{width:80.161131pt;}
._19{width:92.427645pt;}
._e{width:94.023358pt;}
._27{width:99.326758pt;}
._17{width:101.758728pt;}
._39{width:102.688850pt;}
._51{width:115.134561pt;}
._5d{width:117.195335pt;}
._4c{width:121.918476pt;}
._44{width:128.873056pt;}
._4d{width:148.998671pt;}
._5b{width:155.782586pt;}
._7a{width:157.096703pt;}
._45{width:162.434236pt;}
._53{width:166.534452pt;}
._48{width:173.621296pt;}
._55{width:174.525818pt;}
._7e{width:177.887910pt;}
._3d{width:178.903364pt;}
._75{width:180.119348pt;}
._57{width:181.309734pt;}
._72{width:184.586493pt;}
._80{width:189.915493pt;}
._69{width:192.065866pt;}
._7f{width:195.227426pt;}
._66{width:196.328213pt;}
._6a{width:201.738278pt;}
._81{width:208.564860pt;}
._5a{width:218.365270pt;}
._4e{width:219.751920pt;}
._6f{width:220.763107pt;}
._37{width:224.995588pt;}
._46{width:226.838764pt;}
._52{width:230.333121pt;}
._78{width:231.340042pt;}
._56{width:233.793344pt;}
._47{width:236.984771pt;}
._7b{width:239.369808pt;}
._71{width:240.577259pt;}
._49{width:243.034829pt;}
._5c{width:248.581426pt;}
._4f{width:249.989408pt;}
._64{width:251.248059pt;}
._58{width:256.773324pt;}
._65{width:262.546051pt;}
._73{width:264.632425pt;}
._8f{width:266.548135pt;}
._7d{width:268.105449pt;}
._76{width:274.006175pt;}
._6b{width:275.213626pt;}
._67{width:276.152281pt;}
._4b{width:279.091978pt;}
._54{width:284.758040pt;}
._6c{width:286.400687pt;}
._79{width:287.309475pt;}
._4a{width:291.712620pt;}
._36{width:292.723808pt;}
._70{width:294.639517pt;}
._77{width:297.284817pt;}
._59{width:298.496535pt;}
._6d{width:299.831985pt;}
._42{width:301.705029pt;}
._7c{width:305.203652pt;}
._74{width:306.662833pt;}
._8c{width:316.134715pt;}
._5f{width:317.350700pt;}
._60{width:329.339883pt;}
._82{width:330.487602pt;}
._33{width:331.660921pt;}
._3f{width:333.789961pt;}
._6e{width:341.734395pt;}
._90{width:343.163710pt;}
._8a{width:348.851106pt;}
._87{width:354.965163pt;}
._68{width:360.430695pt;}
._92{width:364.411445pt;}
._50{width:367.137811pt;}
._3e{width:373.810794pt;}
._86{width:376.200097pt;}
._84{width:378.329137pt;}
._43{width:385.881043pt;}
._8b{width:387.254893pt;}
._61{width:394.956130pt;}
._32{width:399.389141pt;}
._88{width:400.993388pt;}
._1c{width:407.862635pt;}
._5e{width:411.280192pt;}
._62{width:420.658208pt;}
._91{width:423.828302pt;}
._26{width:431.922068pt;}
._3b{width:433.628713pt;}
._1a{width:448.817856pt;}
._38{width:465.214451pt;}
._35{width:478.086824pt;}
._40{width:481.244118pt;}
._12{width:497.627913pt;}
._30{width:511.805869pt;}
._8d{width:515.470890pt;}
._8e{width:521.299084pt;}
._85{width:531.858952pt;}
._89{width:541.441765pt;}
._2f{width:554.472002pt;}
._41{width:566.461186pt;}
._2e{width:581.948992pt;}
._2d{width:598.844781pt;}
._83{width:607.429207pt;}
._63{width:1548.746507pt;}
._4{width:1572.332346pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333867pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:48.000000pt;}
.y156{bottom:110.653400pt;}
.y205{bottom:110.655453pt;}
.y173{bottom:110.657294pt;}
.ya9{bottom:110.661200pt;}
.yf8{bottom:110.663613pt;}
.y21e{bottom:110.664186pt;}
.y1e0{bottom:110.664955pt;}
.y1cb{bottom:110.665122pt;}
.y43{bottom:110.670373pt;}
.y212{bottom:111.178213pt;}
.y256{bottom:111.420484pt;}
.y73{bottom:121.458960pt;}
.yd4{bottom:123.199667pt;}
.y255{bottom:124.120058pt;}
.y42{bottom:125.334723pt;}
.y155{bottom:127.964239pt;}
.y204{bottom:127.966293pt;}
.y172{bottom:127.968133pt;}
.ya8{bottom:127.972040pt;}
.yf7{bottom:127.974453pt;}
.y21d{bottom:127.975026pt;}
.y1a0{bottom:128.347066pt;}
.y18b{bottom:128.489053pt;}
.y1df{bottom:130.695638pt;}
.y1ca{bottom:130.695805pt;}
.y100{bottom:136.060520pt;}
.y72{bottom:138.769800pt;}
.yd3{bottom:140.510506pt;}
.y254{bottom:141.429709pt;}
.y1de{bottom:143.319481pt;}
.y1c9{bottom:143.319647pt;}
.y154{bottom:145.349747pt;}
.y203{bottom:145.351800pt;}
.y171{bottom:145.353641pt;}
.ya7{bottom:145.357547pt;}
.yf6{bottom:145.359960pt;}
.y21c{bottom:145.360533pt;}
.y19f{bottom:145.732573pt;}
.y18a{bottom:145.874560pt;}
.y41{bottom:148.011773pt;}
.yff{bottom:153.371360pt;}
.y253{bottom:154.129283pt;}
.y71{bottom:156.080640pt;}
.yd2{bottom:157.821346pt;}
.y1dd{bottom:160.024338pt;}
.y1c8{bottom:160.024505pt;}
.y153{bottom:162.660586pt;}
.y202{bottom:162.662640pt;}
.y170{bottom:162.664480pt;}
.ya6{bottom:162.668387pt;}
.yf5{bottom:162.670800pt;}
.y40{bottom:162.676123pt;}
.y19e{bottom:163.043413pt;}
.y189{bottom:163.185400pt;}
.y21b{bottom:167.962133pt;}
.yfe{bottom:170.682200pt;}
.y252{bottom:171.438934pt;}
.y1dc{bottom:172.648181pt;}
.y1c7{bottom:172.648347pt;}
.y70{bottom:173.391479pt;}
.yd1{bottom:175.206853pt;}
.y3f{bottom:177.340473pt;}
.y152{bottom:179.971426pt;}
.y201{bottom:179.973480pt;}
.y16f{bottom:179.975320pt;}
.ya5{bottom:179.979227pt;}
.y19d{bottom:180.354253pt;}
.y188{bottom:180.496240pt;}
.y251{bottom:184.138508pt;}
.yf4{bottom:185.348000pt;}
.yfd{bottom:188.067707pt;}
.y1db{bottom:189.354105pt;}
.y1c6{bottom:189.354272pt;}
.y6f{bottom:190.776986pt;}
.y3e{bottom:192.004823pt;}
.yd0{bottom:192.517693pt;}
.y250{bottom:196.762350pt;}
.y151{bottom:197.356933pt;}
.y200{bottom:197.358987pt;}
.y16e{bottom:197.360827pt;}
.ya4{bottom:197.364734pt;}
.y19c{bottom:197.739760pt;}
.y187{bottom:197.881747pt;}
.y23{bottom:200.848800pt;}
.y1c5{bottom:201.978114pt;}
.yfc{bottom:205.378547pt;}
.y1da{bottom:205.984297pt;}
.y3d{bottom:206.669173pt;}
.y6e{bottom:208.087826pt;}
.ycf{bottom:209.828533pt;}
.y24f{bottom:214.072001pt;}
.y150{bottom:214.667773pt;}
.y1ff{bottom:214.669827pt;}
.y16d{bottom:214.671667pt;}
.ya3{bottom:214.675573pt;}
.y21a{bottom:214.902027pt;}
.y19b{bottom:215.050600pt;}
.y186{bottom:215.192586pt;}
.y1c4{bottom:218.684038pt;}
.y22{bottom:219.519467pt;}
.y3c{bottom:221.333523pt;}
.yfb{bottom:222.689386pt;}
.y1d9{bottom:222.690222pt;}
.yf3{bottom:224.272027pt;}
.y6d{bottom:225.398666pt;}
.y24e{bottom:226.771575pt;}
.yce{bottom:227.214040pt;}
.y14f{bottom:231.978613pt;}
.y1fe{bottom:231.980667pt;}
.y16c{bottom:231.982507pt;}
.ya2{bottom:231.986413pt;}
.y219{bottom:232.287534pt;}
.y19a{bottom:232.361439pt;}
.y185{bottom:232.503426pt;}
.y1c3{bottom:235.314230pt;}
.y3b{bottom:235.997873pt;}
.y21{bottom:238.190133pt;}
.y24d{bottom:239.471150pt;}
.y1d8{bottom:239.999872pt;}
.yfa{bottom:240.074894pt;}
.yf2{bottom:241.582866pt;}
.y6c{bottom:242.784173pt;}
.ycd{bottom:244.524880pt;}
.y14e{bottom:249.289453pt;}
.y1fd{bottom:249.291506pt;}
.y16b{bottom:249.293347pt;}
.ya1{bottom:249.297253pt;}
.y218{bottom:249.598373pt;}
.y199{bottom:249.746947pt;}
.y184{bottom:249.888933pt;}
.y3a{bottom:250.662224pt;}
.y1c2{bottom:252.020155pt;}
.y1d7{bottom:252.699447pt;}
.y24c{bottom:256.780800pt;}
.y20{bottom:256.860800pt;}
.yf9{bottom:257.385733pt;}
.yf1{bottom:258.893706pt;}
.y6b{bottom:260.095013pt;}
.y39{bottom:265.326574pt;}
.y14d{bottom:266.674960pt;}
.y1fc{bottom:266.677014pt;}
.y16a{bottom:266.678854pt;}
.ya0{bottom:266.682760pt;}
.y217{bottom:266.909213pt;}
.y198{bottom:267.057786pt;}
.y183{bottom:267.199773pt;}
.y1c1{bottom:268.649280pt;}
.y24b{bottom:269.404642pt;}
.ycc{bottom:269.847800pt;}
.y1d6{bottom:272.428267pt;}
.y1f{bottom:275.531467pt;}
.yf0{bottom:276.279213pt;}
.y6a{bottom:277.405853pt;}
.y38{bottom:279.990924pt;}
.y1c0{bottom:281.348855pt;}
.y24a{bottom:282.104217pt;}
.y14c{bottom:283.985800pt;}
.y1fb{bottom:283.987853pt;}
.y169{bottom:283.989694pt;}
.y9f{bottom:283.993600pt;}
.y216{bottom:284.294720pt;}
.y197{bottom:284.368626pt;}
.y182{bottom:284.510613pt;}
.ycb{bottom:287.158639pt;}
.y12c{bottom:290.188671pt;}
.yef{bottom:293.590053pt;}
.y1e{bottom:294.202133pt;}
.y69{bottom:294.791360pt;}
.y1bf{bottom:297.977980pt;}
.y249{bottom:299.413867pt;}
.y14b{bottom:301.296639pt;}
.y1fa{bottom:301.298693pt;}
.y168{bottom:301.300533pt;}
.y215{bottom:301.605560pt;}
.y196{bottom:301.679466pt;}
.y181{bottom:301.821453pt;}
.y37{bottom:302.667973pt;}
.yca{bottom:304.544147pt;}
.y9e{bottom:306.670800pt;}
.y1be{bottom:310.677555pt;}
.yee{bottom:310.900893pt;}
.y68{bottom:312.102200pt;}
.y248{bottom:312.113442pt;}
.y1d{bottom:312.872800pt;}
.y12b{bottom:314.151038pt;}
.y36{bottom:317.332323pt;}
.y14a{bottom:318.682147pt;}
.y1f9{bottom:318.684200pt;}
.y167{bottom:318.686041pt;}
.y214{bottom:318.916400pt;}
.y195{bottom:319.064973pt;}
.y180{bottom:319.206960pt;}
.y1d5{bottom:319.215814pt;}
.yc9{bottom:321.854986pt;}
.y247{bottom:324.737284pt;}
.y1bd{bottom:327.987205pt;}
.yed{bottom:328.286400pt;}
.y67{bottom:329.413039pt;}
.y12a{bottom:330.176438pt;}
.y1c{bottom:331.543467pt;}
.y35{bottom:331.996673pt;}
.y149{bottom:335.992986pt;}
.y1f8{bottom:335.995040pt;}
.y166{bottom:335.996880pt;}
.y194{bottom:336.375813pt;}
.y17f{bottom:336.517800pt;}
.y1d4{bottom:336.526653pt;}
.y1bc{bottom:340.686780pt;}
.y213{bottom:341.593600pt;}
.y246{bottom:342.122667pt;}
.yec{bottom:345.597240pt;}
.y129{bottom:346.201837pt;}
.y34{bottom:346.661024pt;}
.y66{bottom:346.798547pt;}
.yc8{bottom:347.177906pt;}
.y1b{bottom:350.214133pt;}
.y148{bottom:353.303826pt;}
.y1f7{bottom:353.305880pt;}
.y165{bottom:353.307720pt;}
.y193{bottom:353.686653pt;}
.y17e{bottom:353.828639pt;}
.y1d3{bottom:353.837493pt;}
.y245{bottom:354.746842pt;}
.y9d{bottom:354.894213pt;}
.y1bb{bottom:360.415600pt;}
.y33{bottom:361.325374pt;}
.y128{bottom:362.151505pt;}
.yeb{bottom:362.908080pt;}
.y65{bottom:364.109386pt;}
.yc7{bottom:364.488746pt;}
.y1a{bottom:368.884800pt;}
.y147{bottom:370.689333pt;}
.y1f6{bottom:370.691387pt;}
.y164{bottom:370.693227pt;}
.y192{bottom:371.072160pt;}
.y17d{bottom:371.214147pt;}
.y1d2{bottom:371.223000pt;}
.y244{bottom:372.132224pt;}
.y9c{bottom:372.279720pt;}
.y32{bottom:375.989724pt;}
.y127{bottom:378.176904pt;}
.yea{bottom:380.293587pt;}
.y64{bottom:381.420226pt;}
.yc6{bottom:381.874253pt;}
.y243{bottom:384.756067pt;}
.y19{bottom:387.555467pt;}
.y146{bottom:388.000173pt;}
.y1f5{bottom:388.002227pt;}
.y163{bottom:388.004067pt;}
.y191{bottom:388.383000pt;}
.y17c{bottom:388.524986pt;}
.y1d1{bottom:388.533840pt;}
.y9b{bottom:389.590560pt;}
.y126{bottom:394.202304pt;}
.y242{bottom:397.455641pt;}
.ye9{bottom:397.604427pt;}
.y31{bottom:398.666773pt;}
.y63{bottom:398.731066pt;}
.yc5{bottom:399.185093pt;}
.y145{bottom:405.311013pt;}
.y1f4{bottom:405.313067pt;}
.y162{bottom:405.314907pt;}
.y190{bottom:405.693839pt;}
.y17b{bottom:405.835826pt;}
.y1d0{bottom:405.844680pt;}
.y18{bottom:406.226133pt;}
.y9a{bottom:406.901399pt;}
.y241{bottom:414.766358pt;}
.ye8{bottom:414.915266pt;}
.y62{bottom:416.116573pt;}
.yc4{bottom:416.495933pt;}
.y125{bottom:419.222791pt;}
.y30{bottom:421.343823pt;}
.y144{bottom:422.696520pt;}
.y1f3{bottom:422.698574pt;}
.y161{bottom:422.700414pt;}
.y18f{bottom:423.079347pt;}
.y17a{bottom:423.221333pt;}
.y1cf{bottom:423.230187pt;}
.y17{bottom:424.820800pt;}
.y240{bottom:427.465933pt;}
.y99{bottom:432.300320pt;}
.ye7{bottom:432.300773pt;}
.y61{bottom:433.427413pt;}
.yc3{bottom:433.881440pt;}
.y124{bottom:435.852983pt;}
.y143{bottom:440.007360pt;}
.y1f2{bottom:440.009414pt;}
.y160{bottom:440.011254pt;}
.y23f{bottom:440.089775pt;}
.y18e{bottom:440.390186pt;}
.y179{bottom:440.532173pt;}
.y1ce{bottom:440.541027pt;}
.y16{bottom:443.491467pt;}
.y2f{bottom:444.020873pt;}
.y277{bottom:448.931400pt;}
.y98{bottom:449.611160pt;}
.ye6{bottom:449.611613pt;}
.y60{bottom:450.738253pt;}
.yc2{bottom:451.192280pt;}
.y123{bottom:452.483176pt;}
.y1cc{bottom:455.659733pt;}
.y142{bottom:457.318200pt;}
.y1f1{bottom:457.320253pt;}
.y15f{bottom:457.322094pt;}
.y23e{bottom:457.475158pt;}
.y18d{bottom:457.701026pt;}
.y178{bottom:457.843013pt;}
.y1cd{bottom:457.851867pt;}
.y276{bottom:461.630975pt;}
.y15{bottom:462.162133pt;}
.y2e{bottom:466.697923pt;}
.ye5{bottom:466.922453pt;}
.y5f{bottom:468.123760pt;}
.yc1{bottom:468.503120pt;}
.y122{bottom:469.189100pt;}
.y23d{bottom:470.099000pt;}
.y141{bottom:474.629039pt;}
.y1f0{bottom:474.631093pt;}
.y15e{bottom:474.632933pt;}
.y97{bottom:474.934080pt;}
.y18c{bottom:475.086533pt;}
.y177{bottom:475.228520pt;}
.y275{bottom:478.940625pt;}
.y14{bottom:480.832800pt;}
.y2d{bottom:481.362273pt;}
.ye4{bottom:484.233293pt;}
.y5e{bottom:485.434600pt;}
.y121{bottom:485.819292pt;}
.yc0{bottom:485.888627pt;}
.y23c{bottom:487.408650pt;}
.y274{bottom:491.640200pt;}
.y140{bottom:492.014547pt;}
.y1ef{bottom:492.016600pt;}
.y96{bottom:492.244920pt;}
.y176{bottom:492.539360pt;}
.y2c{bottom:496.026623pt;}
.y15d{bottom:497.310133pt;}
.y13{bottom:499.503467pt;}
.y23b{bottom:500.108225pt;}
.ye3{bottom:501.618800pt;}
.y120{bottom:502.525217pt;}
.y5d{bottom:502.745439pt;}
.ybf{bottom:503.199467pt;}
.y1ba{bottom:507.813864pt;}
.y273{bottom:508.949850pt;}
.y13f{bottom:509.325386pt;}
.y1ee{bottom:509.327440pt;}
.y175{bottom:509.850200pt;}
.y23a{bottom:517.417875pt;}
.y95{bottom:517.567839pt;}
.y12{bottom:518.174133pt;}
.y2b{bottom:518.703673pt;}
.y11f{bottom:519.155409pt;}
.y5c{bottom:520.130947pt;}
.ybe{bottom:520.510306pt;}
.ye2{bottom:524.295867pt;}
.y272{bottom:526.259500pt;}
.y13e{bottom:526.636226pt;}
.y1ed{bottom:526.638280pt;}
.y174{bottom:527.161039pt;}
.y1b9{bottom:527.845614pt;}
.y239{bottom:530.117450pt;}
.y2a{bottom:533.368023pt;}
.y94{bottom:534.953347pt;}
.y11e{bottom:535.857817pt;}
.y11{bottom:536.844800pt;}
.y5b{bottom:537.441786pt;}
.ybd{bottom:537.895813pt;}
.y271{bottom:538.959075pt;}
.y238{bottom:542.741292pt;}
.y13d{bottom:544.021733pt;}
.y1ec{bottom:544.023787pt;}
.y15c{bottom:544.546547pt;}
.y1b8{bottom:544.551538pt;}
.y29{bottom:548.032373pt;}
.y270{bottom:551.658650pt;}
.y93{bottom:552.264186pt;}
.y11d{bottom:552.488009pt;}
.y5a{bottom:554.752626pt;}
.ybc{bottom:555.206653pt;}
.y10{bottom:555.515467pt;}
.y237{bottom:560.126674pt;}
.y1b7{bottom:561.181731pt;}
.y13c{bottom:561.332573pt;}
.y1eb{bottom:561.334627pt;}
.y15b{bottom:561.857386pt;}
.y28{bottom:562.696723pt;}
.ye1{bottom:563.218733pt;}
.y26f{bottom:568.968300pt;}
.y11c{bottom:569.193933pt;}
.y92{bottom:569.575026pt;}
.y59{bottom:572.138133pt;}
.ybb{bottom:572.517493pt;}
.y236{bottom:572.750517pt;}
.yf{bottom:574.186133pt;}
.y27{bottom:577.361073pt;}
.y1b6{bottom:577.887655pt;}
.y13b{bottom:578.643413pt;}
.y1ea{bottom:578.645467pt;}
.y15a{bottom:579.168226pt;}
.ye0{bottom:580.529573pt;}
.y26e{bottom:581.592142pt;}
.y11b{bottom:585.824126pt;}
.y91{bottom:586.960533pt;}
.y58{bottom:589.448973pt;}
.yba{bottom:589.828333pt;}
.y235{bottom:590.135899pt;}
.ye{bottom:592.856800pt;}
.y26d{bottom:594.291717pt;}
.y1b5{bottom:594.516781pt;}
.y13a{bottom:596.028920pt;}
.y159{bottom:596.553733pt;}
.y26{bottom:599.206133pt;}
.y1e9{bottom:601.322667pt;}
.y11a{bottom:602.530050pt;}
.y234{bottom:602.759742pt;}
.ydf{bottom:605.852493pt;}
.y57{bottom:606.759813pt;}
.yb9{bottom:607.213840pt;}
.y1b4{bottom:607.216355pt;}
.y90{bottom:609.562000pt;}
.yd{bottom:611.527467pt;}
.y26c{bottom:611.601367pt;}
.y139{bottom:613.339760pt;}
.y158{bottom:613.864573pt;}
.y233{bottom:615.459316pt;}
.y119{bottom:619.160242pt;}
.yde{bottom:623.163333pt;}
.y1b3{bottom:623.846547pt;}
.y56{bottom:624.070653pt;}
.y26b{bottom:624.300942pt;}
.yb8{bottom:624.524680pt;}
.y138{bottom:630.650600pt;}
.y157{bottom:631.175413pt;}
.y232{bottom:632.768966pt;}
.y118{bottom:635.866167pt;}
.y1e8{bottom:639.041480pt;}
.ydd{bottom:640.548840pt;}
.y1b2{bottom:640.551405pt;}
.yc{bottom:640.856533pt;}
.y55{bottom:641.456160pt;}
.y26a{bottom:641.611659pt;}
.yb7{bottom:641.835520pt;}
.y231{bottom:645.468541pt;}
.y137{bottom:647.961439pt;}
.y8f{bottom:648.560920pt;}
.y117{bottom:652.496359pt;}
.y1b1{bottom:653.175247pt;}
.y269{bottom:654.311233pt;}
.y1e7{bottom:656.352320pt;}
.ydc{bottom:657.859680pt;}
.y54{bottom:658.767000pt;}
.yb6{bottom:659.221027pt;}
.y230{bottom:662.778191pt;}
.y136{bottom:665.346947pt;}
.y8e{bottom:665.871760pt;}
.y116{bottom:669.202283pt;}
.y1b0{bottom:669.881172pt;}
.y268{bottom:671.621950pt;}
.y1e6{bottom:673.737827pt;}
.ydb{bottom:675.170520pt;}
.y53{bottom:676.077839pt;}
.yb5{bottom:676.531866pt;}
.y22f{bottom:680.087842pt;}
.y1af{bottom:682.505014pt;}
.y135{bottom:682.657786pt;}
.y8d{bottom:683.182600pt;}
.y267{bottom:684.321525pt;}
.y115{bottom:685.832475pt;}
.y1e4{bottom:688.856533pt;}
.y1e3{bottom:691.048320pt;}
.y1e5{bottom:691.048667pt;}
.yda{bottom:692.556027pt;}
.y22e{bottom:692.787416pt;}
.y52{bottom:693.463347pt;}
.yb4{bottom:693.842706pt;}
.yb{bottom:696.868833pt;}
.y266{bottom:696.945367pt;}
.y1ae{bottom:699.210939pt;}
.y134{bottom:699.968626pt;}
.y8c{bottom:700.493439pt;}
.y113{bottom:702.534630pt;}
.y114{bottom:702.538400pt;}
.y22d{bottom:705.411258pt;}
.y1e2{bottom:708.359159pt;}
.yd9{bottom:709.866867pt;}
.ya{bottom:710.173200pt;}
.y51{bottom:710.774186pt;}
.yb3{bottom:711.228213pt;}
.y25{bottom:712.969867pt;}
.y265{bottom:714.330750pt;}
.y1ad{bottom:715.841131pt;}
.y133{bottom:717.354133pt;}
.y8b{bottom:717.878947pt;}
.y112{bottom:719.164822pt;}
.y22c{bottom:722.796641pt;}
.y1e1{bottom:725.744667pt;}
.y264{bottom:726.954592pt;}
.yd8{bottom:727.177706pt;}
.y50{bottom:728.085026pt;}
.yb2{bottom:728.539053pt;}
.y1ac{bottom:732.547055pt;}
.y8a{bottom:735.189786pt;}
.y22b{bottom:735.420483pt;}
.y111{bottom:735.870747pt;}
.y9{bottom:736.856600pt;}
.y263{bottom:739.654166pt;}
.y132{bottom:740.031200pt;}
.yd7{bottom:744.563213pt;}
.y4f{bottom:745.470533pt;}
.yb1{bottom:745.849893pt;}
.y1ab{bottom:749.177247pt;}
.y8{bottom:750.160967pt;}
.y89{bottom:752.500626pt;}
.y110{bottom:752.500939pt;}
.y22a{bottom:752.805866pt;}
.y262{bottom:756.963817pt;}
.y211{bottom:758.549816pt;}
.yd6{bottom:761.874053pt;}
.y4e{bottom:762.781373pt;}
.y7{bottom:763.540000pt;}
.y229{bottom:765.429708pt;}
.y1aa{bottom:765.883172pt;}
.y10f{bottom:769.206864pt;}
.y261{bottom:769.663391pt;}
.y88{bottom:769.886133pt;}
.yb0{bottom:771.172813pt;}
.y210{bottom:778.505833pt;}
.yd5{bottom:779.184893pt;}
.y4d{bottom:780.092213pt;}
.y1a9{bottom:782.513364pt;}
.y228{bottom:782.739358pt;}
.y130{bottom:785.007600pt;}
.y10e{bottom:785.837056pt;}
.y260{bottom:786.973041pt;}
.y87{bottom:787.196973pt;}
.y12f{bottom:787.199160pt;}
.y131{bottom:787.199733pt;}
.y5{bottom:787.502133pt;}
.yaf{bottom:788.558320pt;}
.y6{bottom:792.869200pt;}
.y20f{bottom:795.211758pt;}
.y227{bottom:795.438933pt;}
.y4c{bottom:797.403053pt;}
.y1a8{bottom:799.219288pt;}
.y12d{bottom:802.317867pt;}
.y10d{bottom:802.542980pt;}
.y25f{bottom:804.282692pt;}
.y86{bottom:804.507813pt;}
.y12e{bottom:804.510000pt;}
.yae{bottom:805.869160pt;}
.y226{bottom:808.138508pt;}
.y20e{bottom:811.841950pt;}
.y4b{bottom:814.788560pt;}
.y1a7{bottom:815.849481pt;}
.y25e{bottom:816.982266pt;}
.y10c{bottom:819.173172pt;}
.y7d{bottom:819.625555pt;}
.y4{bottom:820.836067pt;}
.y85{bottom:821.893320pt;}
.yad{bottom:823.180000pt;}
.y225{bottom:825.448158pt;}
.y20d{bottom:828.547874pt;}
.y25d{bottom:829.606109pt;}
.y4a{bottom:832.099400pt;}
.y1a6{bottom:832.555405pt;}
.y7c{bottom:834.289905pt;}
.y10b{bottom:835.878030pt;}
.y224{bottom:838.072000pt;}
.y84{bottom:839.204160pt;}
.y20c{bottom:845.178066pt;}
.y25c{bottom:846.991491pt;}
.yac{bottom:848.502920pt;}
.y1a5{bottom:849.185597pt;}
.y49{bottom:849.410239pt;}
.y223{bottom:850.771575pt;}
.y10a{bottom:852.508222pt;}
.y3{bottom:854.172233pt;}
.y83{bottom:856.515000pt;}
.y7b{bottom:856.966954pt;}
.y25b{bottom:859.615333pt;}
.y20b{bottom:861.883991pt;}
.yab{bottom:865.888427pt;}
.y1a4{bottom:865.890455pt;}
.y48{bottom:866.795747pt;}
.y222{bottom:868.081225pt;}
.y109{bottom:869.818939pt;}
.y7a{bottom:871.631304pt;}
.y25a{bottom:872.314908pt;}
.y82{bottom:873.900507pt;}
.y20a{bottom:878.514183pt;}
.y1a3{bottom:878.514297pt;}
.y221{bottom:880.780800pt;}
.yaa{bottom:883.199266pt;}
.y47{bottom:884.106586pt;}
.y79{bottom:886.295655pt;}
.y108{bottom:887.204322pt;}
.y105{bottom:887.205389pt;}
.y2{bottom:887.508400pt;}
.y259{bottom:889.624558pt;}
.y81{bottom:891.211347pt;}
.y220{bottom:893.404642pt;}
.y209{bottom:895.219041pt;}
.y1a2{bottom:895.219155pt;}
.y107{bottom:899.828164pt;}
.y104{bottom:899.829231pt;}
.y78{bottom:900.960005pt;}
.y46{bottom:901.417426pt;}
.y258{bottom:902.324133pt;}
.y80{bottom:908.522186pt;}
.y21f{bottom:910.790024pt;}
.y106{bottom:912.527739pt;}
.y208{bottom:912.528691pt;}
.y103{bottom:912.528805pt;}
.y77{bottom:915.624355pt;}
.y45{bottom:918.802933pt;}
.y257{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y206{bottom:923.413867pt;}
.y207{bottom:925.152533pt;}
.y1a1{bottom:925.152648pt;}
.y7f{bottom:925.833026pt;}
.y76{bottom:930.288705pt;}
.y102{bottom:932.257625pt;}
.y44{bottom:941.404400pt;}
.y7e{bottom:943.218533pt;}
.y75{bottom:944.953055pt;}
.y101{bottom:944.957200pt;}
.y74{bottom:994.393333pt;}
.he{height:21.330000pt;}
.h4{height:23.996800pt;}
.hd{height:25.313024pt;}
.h8{height:31.060945pt;}
.hb{height:31.999600pt;}
.h1{height:33.066253pt;}
.hc{height:33.080319pt;}
.h3{height:36.000000pt;}
.h6{height:39.266667pt;}
.h7{height:43.253766pt;}
.h9{height:47.999600pt;}
.ha{height:49.599587pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:48.000000pt;}
.x57{left:55.113511pt;}
.x38{left:57.828144pt;}
.xb{left:63.496000pt;}
.x52{left:64.935255pt;}
.x47{left:67.429090pt;}
.x53{left:68.639742pt;}
.xa{left:74.683467pt;}
.x5d{left:76.724974pt;}
.x58{left:79.604938pt;}
.x48{left:82.925430pt;}
.x5c{left:92.826106pt;}
.x54{left:94.794082pt;}
.x21{left:122.917464pt;}
.x1f{left:124.802240pt;}
.x24{left:127.603276pt;}
.x23{left:139.316196pt;}
.x20{left:151.034445pt;}
.x3a{left:166.147856pt;}
.x4e{left:167.205977pt;}
.x49{left:172.272580pt;}
.x55{left:173.408566pt;}
.x46{left:175.522673pt;}
.x4b{left:178.398370pt;}
.x59{left:182.483652pt;}
.x39{left:194.040841pt;}
.x29{left:195.476557pt;}
.x1e{left:214.754182pt;}
.xf{left:216.038433pt;}
.x4a{left:224.429795pt;}
.x56{left:225.490048pt;}
.x2a{left:235.237126pt;}
.x3b{left:239.092011pt;}
.x4f{left:240.075466pt;}
.x5e{left:242.571434pt;}
.x2b{left:249.372416pt;}
.x22{left:261.694400pt;}
.x1{left:266.683333pt;}
.x66{left:272.579467pt;}
.xe{left:277.114104pt;}
.xc{left:282.634160pt;}
.x3c{left:287.545806pt;}
.x50{left:288.453528pt;}
.x67{left:294.651724pt;}
.x2c{left:296.842756pt;}
.x10{left:298.733932pt;}
.x3d{left:301.303500pt;}
.x51{left:302.211222pt;}
.x2d{left:310.600451pt;}
.x2{left:318.916400pt;}
.x3{left:330.632933pt;}
.x37{left:350.815415pt;}
.x11{left:352.629792pt;}
.x3e{left:354.443103pt;}
.x2e{left:362.077141pt;}
.x12{left:366.387487pt;}
.x3f{left:367.520273pt;}
.x2f{left:375.154311pt;}
.x13{left:415.067412pt;}
.x4{left:416.730533pt;}
.x14{left:423.533439pt;}
.x5{left:428.447067pt;}
.x15{left:434.947696pt;}
.x40{left:447.419007pt;}
.x5f{left:451.580022pt;}
.x30{left:453.238668pt;}
.x41{left:465.258784pt;}
.x60{left:467.453957pt;}
.x31{left:471.078445pt;}
.x27{left:474.557333pt;}
.x28{left:483.023467pt;}
.x16{left:487.633971pt;}
.x17{left:505.473748pt;}
.xd{left:514.242400pt;}
.x42{left:516.811206pt;}
.x32{left:521.572747pt;}
.x43{left:530.644634pt;}
.x6{left:534.425067pt;}
.x33{left:535.330442pt;}
.x61{left:541.984133pt;}
.x7{left:546.141600pt;}
.x62{left:549.240800pt;}
.x18{left:562.922630pt;}
.x63{left:567.987232pt;}
.x19{left:576.680325pt;}
.x4c{left:583.483333pt;}
.x44{left:589.303100pt;}
.x4d{left:591.193467pt;}
.x34{left:592.098799pt;}
.x45{left:599.583505pt;}
.x35{left:602.379204pt;}
.x1a{left:628.989004pt;}
.x25{left:644.258133pt;}
.x26{left:649.776267pt;}
.x64{left:661.720461pt;}
.x8{left:668.069067pt;}
.x65{left:682.658866pt;}
.x36{left:688.779190pt;}
.x1c{left:714.784198pt;}
.x1b{left:719.092411pt;}
.x1d{left:724.232614pt;}
.x5a{left:725.593467pt;}
.x5b{left:730.431200pt;}
}




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