
    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_4d5eaafaf2059d90585a6a34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae759f27561cb9aec4de7cb4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f445041d117755b8f537988.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2bc94b01e9c4abb77e9b39ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f3d9768de84ab9b6fc12fe47.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9604ff468effda9c6220b1ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_962d4080e2fa72e88c59d805.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5111922f4235e99ff8fec260.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5b86876a7d9f8b0d2383511.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bb92bec20c3d635f95456998.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1e76caf913b1e5db46df5e02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_396e31aa5ab85b1b22931805.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_681be267d6e1f3a7bcbc111f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956000;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_4372ac5523dfce55d3f625d8.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9946e79738983a6026437dfb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.263600px;}
.ls8{letter-spacing:-1.200600px;}
.lsc{letter-spacing:-1.199985px;}
.ls9{letter-spacing:-0.241496px;}
.lsb{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.239997px;}
.lsa{letter-spacing:-0.239400px;}
.ls6{letter-spacing:-0.237600px;}
.lsd{letter-spacing:-0.237598px;}
.ls14{letter-spacing:-0.214367px;}
.ls7{letter-spacing:-0.212372px;}
.lsf{letter-spacing:-0.211976px;}
.lse{letter-spacing:0.000000px;}
.ls3{letter-spacing:9.446282px;}
.ls2{letter-spacing:10.387070px;}
.ls10{letter-spacing:10.862264px;}
.ls11{letter-spacing:11.001462px;}
.ls12{letter-spacing:11.059062px;}
.ls13{letter-spacing:13.098000px;}
.ls15{letter-spacing:13.326000px;}
.ls0{letter-spacing:20.783740px;}
.ls1{letter-spacing:20.788540px;}
.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;}
}
.wsc1{word-spacing:-30.959613px;}
.ws1e{word-spacing:-25.247684px;}
.ws101{word-spacing:-19.994233px;}
.ws60{word-spacing:-16.776000px;}
.ws79{word-spacing:-16.758000px;}
.ws7a{word-spacing:-16.548000px;}
.ws76{word-spacing:-16.398000px;}
.wsd{word-spacing:-13.247834px;}
.wsaf{word-spacing:-13.147036px;}
.wsc8{word-spacing:-13.070237px;}
.wsa5{word-spacing:-12.969438px;}
.ws25{word-spacing:-10.799865px;}
.ws5b{word-spacing:-4.456763px;}
.ws102{word-spacing:-4.233565px;}
.wsff{word-spacing:-4.082366px;}
.ws11c{word-spacing:-3.609555px;}
.ws14d{word-spacing:-3.599955px;}
.ws12c{word-spacing:-3.571155px;}
.ws169{word-spacing:-3.532756px;}
.ws13d{word-spacing:-3.470357px;}
.ws15{word-spacing:-3.465600px;}
.ws130{word-spacing:-3.455957px;}
.ws16f{word-spacing:-3.436757px;}
.ws120{word-spacing:-3.417557px;}
.ws15c{word-spacing:-3.403157px;}
.ws164{word-spacing:-3.398358px;}
.ws13e{word-spacing:-3.393558px;}
.ws155{word-spacing:-3.369558px;}
.ws14a{word-spacing:-3.359958px;}
.ws165{word-spacing:-3.355158px;}
.ws118{word-spacing:-3.350358px;}
.ws163{word-spacing:-3.345558px;}
.ws6{word-spacing:-3.342600px;}
.ws125{word-spacing:-3.340758px;}
.ws15f{word-spacing:-3.335958px;}
.ws137{word-spacing:-3.331158px;}
.ws144{word-spacing:-3.326358px;}
.ws13{word-spacing:-3.323100px;}
.ws132{word-spacing:-3.321558px;}
.ws115{word-spacing:-3.316759px;}
.ws11f{word-spacing:-3.311959px;}
.ws16c{word-spacing:-3.302359px;}
.ws151{word-spacing:-3.297559px;}
.ws126{word-spacing:-3.283159px;}
.ws161{word-spacing:-3.278359px;}
.ws122{word-spacing:-3.273559px;}
.ws140{word-spacing:-3.268759px;}
.ws1a{word-spacing:-3.266100px;}
.ws12d{word-spacing:-3.263959px;}
.ws134{word-spacing:-3.259159px;}
.wsf{word-spacing:-3.254700px;}
.ws11d{word-spacing:-3.254359px;}
.ws63{word-spacing:-3.249559px;}
.ws8{word-spacing:-3.245400px;}
.ws14e{word-spacing:-3.244759px;}
.ws123{word-spacing:-3.239960px;}
.ws153{word-spacing:-3.235160px;}
.ws156{word-spacing:-3.230360px;}
.ws4{word-spacing:-3.223800px;}
.ws13c{word-spacing:-3.220760px;}
.ws11{word-spacing:-3.220500px;}
.ws11b{word-spacing:-3.215960px;}
.ws129{word-spacing:-3.211160px;}
.ws170{word-spacing:-3.201560px;}
.ws18{word-spacing:-3.192000px;}
.ws16a{word-spacing:-3.191960px;}
.ws121{word-spacing:-3.182360px;}
.ws19{word-spacing:-3.180600px;}
.ws13a{word-spacing:-3.177560px;}
.ws16d{word-spacing:-3.172760px;}
.wsf6{word-spacing:-3.167960px;}
.ws12{word-spacing:-3.163500px;}
.ws15d{word-spacing:-3.158361px;}
.wse{word-spacing:-3.157800px;}
.ws131{word-spacing:-3.153561px;}
.ws10{word-spacing:-3.152100px;}
.ws14b{word-spacing:-3.129561px;}
.ws7{word-spacing:-3.126600px;}
.ws1b{word-spacing:-3.124761px;}
.ws114{word-spacing:-3.105561px;}
.ws1d{word-spacing:-3.091161px;}
.ws139{word-spacing:-3.086361px;}
.ws127{word-spacing:-3.081561px;}
.ws166{word-spacing:-3.071962px;}
.ws2{word-spacing:-3.067200px;}
.ws157{word-spacing:-3.067162px;}
.ws14c{word-spacing:-3.062362px;}
.ws145{word-spacing:-3.057562px;}
.ws13f{word-spacing:-3.047962px;}
.ws116{word-spacing:-3.043162px;}
.ws138{word-spacing:-3.033562px;}
.ws148{word-spacing:-3.028762px;}
.ws3{word-spacing:-3.024000px;}
.ws12e{word-spacing:-3.023962px;}
.ws124{word-spacing:-3.019162px;}
.ws160{word-spacing:-3.004762px;}
.ws5{word-spacing:-3.002400px;}
.ws167{word-spacing:-2.999962px;}
.ws14f{word-spacing:-2.995163px;}
.ws117{word-spacing:-2.985563px;}
.ws14{word-spacing:-2.981100px;}
.ws149{word-spacing:-2.975963px;}
.ws12f{word-spacing:-2.971163px;}
.wsa{word-spacing:-2.956763px;}
.ws154{word-spacing:-2.951963px;}
.ws147{word-spacing:-2.947163px;}
.ws162{word-spacing:-2.942363px;}
.ws119{word-spacing:-2.937563px;}
.ws16{word-spacing:-2.935500px;}
.ws15a{word-spacing:-2.927963px;}
.ws158{word-spacing:-2.923163px;}
.ws128{word-spacing:-2.913564px;}
.ws12a{word-spacing:-2.908764px;}
.ws11a{word-spacing:-2.894364px;}
.ws159{word-spacing:-2.889564px;}
.ws168{word-spacing:-2.879964px;}
.ws136{word-spacing:-2.875164px;}
.ws150{word-spacing:-2.870364px;}
.ws141{word-spacing:-2.831965px;}
.ws146{word-spacing:-2.827165px;}
.ws17{word-spacing:-2.815800px;}
.ws11e{word-spacing:-2.812765px;}
.ws13b{word-spacing:-2.807965px;}
.ws135{word-spacing:-2.793565px;}
.ws152{word-spacing:-2.783965px;}
.ws113{word-spacing:-2.779165px;}
.ws133{word-spacing:-2.774365px;}
.ws15b{word-spacing:-2.764765px;}
.ws16b{word-spacing:-2.759966px;}
.wsc{word-spacing:-2.750366px;}
.wsb{word-spacing:-2.745566px;}
.ws1{word-spacing:-2.732400px;}
.ws9{word-spacing:-2.683166px;}
.ws0{word-spacing:-2.649567px;}
.ws16e{word-spacing:-2.635167px;}
.ws15e{word-spacing:-2.630367px;}
.ws143{word-spacing:-2.553568px;}
.ws30{word-spacing:-1.055987px;}
.ws89{word-spacing:-0.972000px;}
.ws85{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.916789px;}
.ws2d{word-spacing:-0.892789px;}
.ws2a{word-spacing:-0.878389px;}
.ws68{word-spacing:-0.868789px;}
.ws24{word-spacing:-0.863989px;}
.ws6c{word-spacing:-0.859189px;}
.ws3b{word-spacing:-0.839989px;}
.ws35{word-spacing:-0.815990px;}
.ws28{word-spacing:-0.791990px;}
.ws6b{word-spacing:-0.782390px;}
.ws20{word-spacing:-0.753591px;}
.ws2c{word-spacing:-0.743991px;}
.ws38{word-spacing:-0.739191px;}
.ws3c{word-spacing:-0.729591px;}
.ws2f{word-spacing:-0.724791px;}
.ws65{word-spacing:-0.719991px;}
.ws31{word-spacing:-0.676792px;}
.ws34{word-spacing:-0.671992px;}
.wsa7{word-spacing:-0.667192px;}
.ws21{word-spacing:-0.662392px;}
.ws36{word-spacing:-0.652792px;}
.ws37{word-spacing:-0.647992px;}
.ws2e{word-spacing:-0.633592px;}
.ws1f{word-spacing:-0.623992px;}
.ws69{word-spacing:-0.619192px;}
.ws39{word-spacing:-0.614392px;}
.ws66{word-spacing:-0.609592px;}
.ws3a{word-spacing:-0.595193px;}
.ws99{word-spacing:-0.575993px;}
.ws26{word-spacing:-0.571193px;}
.ws96{word-spacing:-0.566393px;}
.wsc2{word-spacing:-0.556793px;}
.wse6{word-spacing:-0.546000px;}
.wsf9{word-spacing:-0.540000px;}
.ws3d{word-spacing:-0.537593px;}
.wse5{word-spacing:-0.534000px;}
.wsbc{word-spacing:-0.532793px;}
.wsf0{word-spacing:-0.528000px;}
.ws22{word-spacing:-0.527993px;}
.wsc0{word-spacing:-0.523193px;}
.ws29{word-spacing:-0.518394px;}
.ws44{word-spacing:-0.516000px;}
.wsd1{word-spacing:-0.513594px;}
.ws88{word-spacing:-0.510000px;}
.ws70{word-spacing:-0.498000px;}
.wsa6{word-spacing:-0.494394px;}
.wse7{word-spacing:-0.479994px;}
.ws67{word-spacing:-0.475194px;}
.ws47{word-spacing:-0.474000px;}
.ws32{word-spacing:-0.470394px;}
.ws48{word-spacing:-0.468000px;}
.ws23{word-spacing:-0.460794px;}
.wsfd{word-spacing:-0.456000px;}
.ws109{word-spacing:-0.450000px;}
.ws46{word-spacing:-0.444000px;}
.wsa9{word-spacing:-0.438000px;}
.ws4f{word-spacing:-0.432000px;}
.ws6d{word-spacing:-0.426000px;}
.ws27{word-spacing:-0.417595px;}
.wsef{word-spacing:-0.414000px;}
.ws8a{word-spacing:-0.408000px;}
.wseb{word-spacing:-0.407995px;}
.wsb0{word-spacing:-0.403195px;}
.wsed{word-spacing:-0.402000px;}
.ws4c{word-spacing:-0.396000px;}
.ws6f{word-spacing:-0.390000px;}
.ws80{word-spacing:-0.384000px;}
.ws9c{word-spacing:-0.383995px;}
.wsea{word-spacing:-0.379195px;}
.wscc{word-spacing:-0.378000px;}
.wsc5{word-spacing:-0.374395px;}
.ws59{word-spacing:-0.372000px;}
.wsa4{word-spacing:-0.369595px;}
.ws7b{word-spacing:-0.366000px;}
.ws2b{word-spacing:-0.364795px;}
.ws56{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.355196px;}
.ws4a{word-spacing:-0.354000px;}
.ws81{word-spacing:-0.348000px;}
.ws6a{word-spacing:-0.345596px;}
.ws77{word-spacing:-0.342000px;}
.ws9b{word-spacing:-0.340796px;}
.wsab{word-spacing:-0.336000px;}
.ws98{word-spacing:-0.335996px;}
.ws6e{word-spacing:-0.330000px;}
.ws93{word-spacing:-0.324000px;}
.ws5a{word-spacing:-0.318000px;}
.ws94{word-spacing:-0.312000px;}
.ws64{word-spacing:-0.307196px;}
.ws92{word-spacing:-0.306000px;}
.ws42{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.294000px;}
.ws51{word-spacing:-0.288000px;}
.wsbf{word-spacing:-0.287996px;}
.wse8{word-spacing:-0.283196px;}
.ws41{word-spacing:-0.282000px;}
.wsa3{word-spacing:-0.278397px;}
.ws7c{word-spacing:-0.276000px;}
.ws49{word-spacing:-0.270000px;}
.ws87{word-spacing:-0.264000px;}
.ws62{word-spacing:-0.258000px;}
.ws43{word-spacing:-0.252000px;}
.ws3f{word-spacing:-0.246000px;}
.wsf8{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.234000px;}
.wsb3{word-spacing:-0.230397px;}
.ws71{word-spacing:-0.228000px;}
.wsd4{word-spacing:-0.225597px;}
.wsf5{word-spacing:-0.222000px;}
.ws52{word-spacing:-0.216000px;}
.ws55{word-spacing:-0.210000px;}
.ws75{word-spacing:-0.204000px;}
.ws97{word-spacing:-0.201597px;}
.ws73{word-spacing:-0.198000px;}
.ws54{word-spacing:-0.192000px;}
.ws9f{word-spacing:-0.191998px;}
.wsd8{word-spacing:-0.187198px;}
.ws84{word-spacing:-0.186000px;}
.wsc7{word-spacing:-0.182398px;}
.ws58{word-spacing:-0.180000px;}
.ws74{word-spacing:-0.174000px;}
.wsbd{word-spacing:-0.172798px;}
.ws82{word-spacing:-0.168000px;}
.wsac{word-spacing:-0.167998px;}
.wsf2{word-spacing:-0.162000px;}
.ws91{word-spacing:-0.156000px;}
.wsb2{word-spacing:-0.153598px;}
.wsca{word-spacing:-0.150000px;}
.ws9e{word-spacing:-0.139198px;}
.ws78{word-spacing:-0.138000px;}
.wsa0{word-spacing:-0.134398px;}
.ws8f{word-spacing:-0.132000px;}
.ws90{word-spacing:-0.126000px;}
.ws7d{word-spacing:-0.120000px;}
.wsb6{word-spacing:-0.119998px;}
.wsa8{word-spacing:-0.115199px;}
.wse4{word-spacing:-0.114000px;}
.ws8d{word-spacing:-0.108000px;}
.wscb{word-spacing:-0.102000px;}
.ws4d{word-spacing:-0.096000px;}
.ws9d{word-spacing:-0.095999px;}
.wsfa{word-spacing:-0.090000px;}
.wsb7{word-spacing:-0.086399px;}
.ws8c{word-spacing:-0.084000px;}
.wsf3{word-spacing:-0.078000px;}
.ws86{word-spacing:-0.072000px;}
.ws53{word-spacing:-0.054000px;}
.wsec{word-spacing:-0.048000px;}
.wsfc{word-spacing:-0.042000px;}
.wsc6{word-spacing:-0.038400px;}
.wsfb{word-spacing:-0.036000px;}
.ws72{word-spacing:-0.030000px;}
.wsa2{word-spacing:-0.028800px;}
.ws5e{word-spacing:-0.024000px;}
.wse1{word-spacing:-0.019200px;}
.wsf7{word-spacing:-0.018000px;}
.wsa1{word-spacing:-0.014400px;}
.ws5f{word-spacing:-0.012000px;}
.ws7f{word-spacing:-0.006000px;}
.ws3e{word-spacing:0.000000px;}
.wsd3{word-spacing:0.004800px;}
.ws7e{word-spacing:0.006000px;}
.wsbe{word-spacing:0.019200px;}
.wsc4{word-spacing:0.024000px;}
.ws61{word-spacing:0.030000px;}
.ws8b{word-spacing:0.033600px;}
.ws4e{word-spacing:0.042000px;}
.ws4b{word-spacing:0.054000px;}
.ws45{word-spacing:0.060000px;}
.wscf{word-spacing:0.062399px;}
.wsbb{word-spacing:0.067199px;}
.wse0{word-spacing:0.076799px;}
.ws10f{word-spacing:0.078000px;}
.wsee{word-spacing:0.084000px;}
.wsc9{word-spacing:0.090000px;}
.ws8e{word-spacing:0.096000px;}
.wse9{word-spacing:0.100799px;}
.ws57{word-spacing:0.102000px;}
.wsb9{word-spacing:0.105599px;}
.wsf1{word-spacing:0.108000px;}
.ws10d{word-spacing:0.114000px;}
.ws9a{word-spacing:0.115199px;}
.wsce{word-spacing:0.119998px;}
.ws111{word-spacing:0.120000px;}
.wsf4{word-spacing:0.132000px;}
.wsdf{word-spacing:0.143998px;}
.wsaa{word-spacing:0.144000px;}
.wsc3{word-spacing:0.148798px;}
.ws50{word-spacing:0.156000px;}
.ws83{word-spacing:0.162000px;}
.wsb1{word-spacing:0.172798px;}
.ws104{word-spacing:0.180000px;}
.wsad{word-spacing:0.196798px;}
.wscd{word-spacing:0.201597px;}
.wsfe{word-spacing:0.210000px;}
.wse3{word-spacing:0.225597px;}
.wse2{word-spacing:0.302396px;}
.wsba{word-spacing:0.316796px;}
.wsd6{word-spacing:0.326396px;}
.wsae{word-spacing:0.340796px;}
.ws110{word-spacing:0.342000px;}
.ws100{word-spacing:0.408000px;}
.ws106{word-spacing:0.414000px;}
.wsd7{word-spacing:0.446394px;}
.wsb8{word-spacing:0.518394px;}
.ws5d{word-spacing:0.534000px;}
.ws95{word-spacing:0.537593px;}
.wsd5{word-spacing:0.662392px;}
.ws105{word-spacing:0.666000px;}
.ws10a{word-spacing:0.708000px;}
.ws107{word-spacing:0.762000px;}
.ws10b{word-spacing:0.846000px;}
.ws108{word-spacing:0.900000px;}
.ws10e{word-spacing:1.020000px;}
.ws10c{word-spacing:1.026000px;}
.ws103{word-spacing:1.158000px;}
.wsda{word-spacing:14.875014px;}
.wsd9{word-spacing:14.913414px;}
.wsdb{word-spacing:15.004612px;}
.wsde{word-spacing:27.690854px;}
.wsdc{word-spacing:27.710054px;}
.wsdd{word-spacing:27.830052px;}
.ws1c{word-spacing:34.588368px;}
.ws12b{word-spacing:46.842614px;}
.ws142{word-spacing:46.847414px;}
.ws112{word-spacing:46.909814px;}
.wsb4{word-spacing:83.250159px;}
.wsd2{word-spacing:208.446994px;}
.wsd0{word-spacing:247.331308px;}
._0{margin-left:-1.113586px;}
._4{width:1.373700px;}
._2{width:9.431882px;}
._4f{width:10.596776px;}
._5{width:11.662200px;}
._7b{width:12.672000px;}
._3{width:13.742700px;}
._7{width:14.874600px;}
._8{width:20.966138px;}
._1{width:25.023600px;}
._4e{width:38.706716px;}
._6d{width:40.415495px;}
._73{width:43.141861px;}
._5e{width:59.053662px;}
._65{width:70.928713px;}
._44{width:80.302996px;}
._5f{width:82.040574px;}
._72{width:83.168560px;}
._40{width:85.491731px;}
._6c{width:88.208497px;}
._2b{width:91.251659px;}
._29{width:93.714029px;}
._2f{width:98.753966px;}
._61{width:103.515506px;}
._32{width:108.992238px;}
._2d{width:110.134623px;}
._3e{width:114.977763px;}
._6a{width:120.084899px;}
._70{width:124.068849px;}
._3b{width:127.836802px;}
._3d{width:131.105561px;}
._27{width:132.123148px;}
._60{width:135.651104px;}
._4a{width:138.003075px;}
._69{width:139.947051px;}
._77{width:142.313421px;}
._11{width:147.689354px;}
._15{width:149.071737px;}
._45{width:150.127723px;}
._35{width:153.108486px;}
._47{width:154.130873px;}
._21{width:159.228410px;}
._4b{width:161.196385px;}
._41{width:163.548356px;}
._1a{width:165.213935px;}
._79{width:166.265122px;}
._31{width:168.665092px;}
._2c{width:170.345071px;}
._10{width:171.401057px;}
._20{width:175.893801px;}
._43{width:177.122586px;}
._6f{width:185.733678px;}
._f{width:188.066449px;}
._26{width:192.333596px;}
._13{width:194.392770px;}
._3f{width:201.304684px;}
._5b{width:202.975063px;}
._51{width:204.199047px;}
._71{width:206.771815px;}
._a{width:208.168598px;}
._12{width:211.058162px;}
._5a{width:219.894851px;}
._6b{width:221.037237px;}
._38{width:223.235610px;}
._34{width:230.195523px;}
._53{width:235.653054px;}
._76{width:243.334613px;}
._b{width:262.249522px;}
._23{width:272.564593px;}
._17{width:288.289196px;}
._18{width:295.085911px;}
._d{width:299.751453px;}
._1d{width:311.751303px;}
._1f{width:329.933476px;}
._67{width:356.649942px;}
._16{width:360.357150px;}
._37{width:369.504181px;}
._30{width:386.495969px;}
._3a{width:403.036562px;}
._64{width:417.676379px;}
._36{width:419.980350px;}
._66{width:423.455507px;}
._33{width:424.842689px;}
._2e{width:436.837739px;}
._39{width:453.464732px;}
._63{width:464.907789px;}
._25{width:476.154048px;}
._2a{width:494.024225px;}
._62{width:515.249559px;}
._57{width:527.765823px;}
._28{width:539.249259px;}
._5c{width:572.264413px;}
._58{width:578.264338px;}
._56{width:595.275325px;}
._42{width:597.851727px;}
._4c{width:600.891743px;}
._14{width:606.832414px;}
._59{width:612.267113px;}
._24{width:625.427382px;}
._54{width:627.630555px;}
._55{width:633.611280px;}
._49{width:649.902276px;}
._e{width:669.750028px;}
._4d{width:672.077999px;}
._6e{width:684.812240px;}
._78{width:687.631459px;}
._50{width:696.442494px;}
._1c{width:701.400832px;}
._52{width:702.462948px;}
._1e{width:720.370195px;}
._22{width:735.749203px;}
._48{width:737.885176px;}
._46{width:775.238309px;}
._c{width:810.042674px;}
._1b{width:813.517831px;}
._75{width:824.624892px;}
._19{width:835.371958px;}
._74{width:861.978025px;}
._5d{width:941.820227px;}
._9{width:971.647054px;}
._3c{width:1087.973600px;}
._68{width:1175.054112px;}
._7a{width:1586.375370px;}
._6{width:1612.074249px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:39.995400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:68.998800px;}
.fs8{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:54.000000px;}
.yc6{bottom:119.651090px;}
.yde{bottom:124.498017px;}
.y11e{bottom:124.498388px;}
.y72{bottom:124.498500px;}
.y26{bottom:124.498575px;}
.y17f{bottom:124.498838px;}
.y49{bottom:124.500064px;}
.yb6{bottom:125.097000px;}
.y1ce{bottom:125.100000px;}
.y25c{bottom:127.819491px;}
.y1e8{bottom:131.983500px;}
.y133{bottom:136.576500px;}
.y48{bottom:140.997458px;}
.y25b{bottom:142.105312px;}
.yc5{bottom:142.866000px;}
.y71{bottom:143.973000px;}
.yb5{bottom:144.570000px;}
.y1cd{bottom:144.573000px;}
.y25{bottom:145.503075px;}
.y222{bottom:146.357456px;}
.y19d{bottom:150.354000px;}
.y17e{bottom:151.540500px;}
.ydd{bottom:151.540879px;}
.y11d{bottom:151.541250px;}
.y1e7{bottom:151.542000px;}
.y132{bottom:156.051000px;}
.y25a{bottom:156.307135px;}
.y17d{bottom:156.813000px;}
.y47{bottom:157.494852px;}
.y221{bottom:160.644478px;}
.y70{bottom:163.531500px;}
.yb4{bottom:164.128500px;}
.y1cc{bottom:164.131500px;}
.y24{bottom:166.507575px;}
.y17c{bottom:169.483500px;}
.ydc{bottom:169.484254px;}
.y11c{bottom:169.484625px;}
.y19c{bottom:169.828500px;}
.y46{bottom:173.993445px;}
.y17b{bottom:174.841500px;}
.y220{bottom:174.846300px;}
.y131{bottom:175.525500px;}
.y259{bottom:175.865690px;}
.y1e6{bottom:178.500000px;}
.y6f{bottom:183.006000px;}
.yb3{bottom:183.603000px;}
.y1cb{bottom:183.606000px;}
.y11b{bottom:187.512000px;}
.y23{bottom:187.512075px;}
.y19b{bottom:189.301500px;}
.y258{bottom:190.067513px;}
.y45{bottom:190.490839px;}
.y11a{bottom:192.868500px;}
.y21f{bottom:194.404856px;}
.y130{bottom:195.084000px;}
.ydb{bottom:197.632303px;}
.y17a{bottom:197.632884px;}
.y6e{bottom:202.479000px;}
.yb2{bottom:203.077500px;}
.y1ca{bottom:203.080500px;}
.y257{bottom:204.354534px;}
.y119{bottom:205.540500px;}
.y1e5{bottom:205.542000px;}
.y44{bottom:206.988233px;}
.y22{bottom:208.518000px;}
.y21e{bottom:208.606678px;}
.y19a{bottom:208.861500px;}
.y118{bottom:210.813000px;}
.y12f{bottom:214.558500px;}
.yda{bottom:216.340069px;}
.y179{bottom:216.341850px;}
.y6d{bottom:222.037500px;}
.yb1{bottom:222.636000px;}
.y1c9{bottom:222.639000px;}
.y117{bottom:223.483500px;}
.y43{bottom:223.485627px;}
.y256{bottom:223.827891px;}
.y21d{bottom:228.165234px;}
.y199{bottom:228.334500px;}
.y116{bottom:228.841500px;}
.y21{bottom:229.522500px;}
.y1e4{bottom:232.500000px;}
.y12e{bottom:234.031500px;}
.yd9{bottom:235.134234px;}
.y178{bottom:235.134815px;}
.y255{bottom:238.114912px;}
.y42{bottom:239.983020px;}
.y6c{bottom:241.512000px;}
.yb0{bottom:242.110500px;}
.y1c8{bottom:242.112000px;}
.y21c{bottom:242.367056px;}
.y198{bottom:247.809000px;}
.y20{bottom:250.527000px;}
.y115{bottom:251.632679px;}
.y254{bottom:252.315535px;}
.y12d{bottom:253.590000px;}
.yd8{bottom:253.842000px;}
.yd6{bottom:253.842535px;}
.y177{bottom:253.843781px;}
.yd7{bottom:259.200000px;}
.y1e3{bottom:259.542000px;}
.y6b{bottom:260.986500px;}
.yaf{bottom:261.583500px;}
.y1c7{bottom:261.586500px;}
.y21b{bottom:261.840413px;}
.y41{bottom:265.494701px;}
.y114{bottom:265.918500px;}
.y112{bottom:265.919240px;}
.y197{bottom:267.367500px;}
.y113{bottom:271.191000px;}
.y1f{bottom:271.531500px;}
.y253{bottom:271.875290px;}
.yd5{bottom:272.635500px;}
.yd3{bottom:272.637221px;}
.y176{bottom:272.637946px;}
.y12c{bottom:273.064500px;}
.y21a{bottom:276.127434px;}
.yd4{bottom:277.993500px;}
.y6a{bottom:280.459500px;}
.yae{bottom:281.142000px;}
.y1c6{bottom:281.145000px;}
.y40{bottom:281.992095px;}
.y111{bottom:284.628206px;}
.y252{bottom:286.075913px;}
.y1e2{bottom:286.498500px;}
.y196{bottom:286.842000px;}
.y175{bottom:291.345712px;}
.yd2{bottom:291.346187px;}
.y1e{bottom:292.536000px;}
.y12b{bottom:292.539000px;}
.y219{bottom:295.601991px;}
.y3f{bottom:298.489489px;}
.y69{bottom:300.018000px;}
.y251{bottom:300.362934px;}
.yad{bottom:300.616500px;}
.y1c5{bottom:300.619500px;}
.y110{bottom:303.421171px;}
.y195{bottom:306.315000px;}
.y218{bottom:309.887812px;}
.yd1{bottom:310.139153px;}
.y174{bottom:310.139878px;}
.y12a{bottom:312.097500px;}
.y1d{bottom:313.540500px;}
.y1e1{bottom:313.542000px;}
.y3e{bottom:314.988083px;}
.y250{bottom:319.837491px;}
.yac{bottom:320.091000px;}
.y1c4{bottom:320.094000px;}
.y10f{bottom:322.130138px;}
.y217{bottom:324.089635px;}
.y173{bottom:324.340500px;}
.y68{bottom:325.530000px;}
.y194{bottom:325.789500px;}
.yd0{bottom:328.848119px;}
.y129{bottom:331.570500px;}
.y1e0{bottom:333.015000px;}
.y24f{bottom:334.123312px;}
.y1c{bottom:334.459500px;}
.y216{bottom:338.375456px;}
.yab{bottom:339.564000px;}
.y1c3{bottom:339.567000px;}
.y3d{bottom:340.499764px;}
.y10e{bottom:340.839104px;}
.y172{bottom:343.134179px;}
.y16e{bottom:343.134756px;}
.y193{bottom:345.348000px;}
.ycf{bottom:347.642284px;}
.y24e{bottom:348.325135px;}
.y16f{bottom:348.490500px;}
.y128{bottom:351.045000px;}
.y3c{bottom:356.997158px;}
.y170{bottom:357.420000px;}
.y16d{bottom:357.420577px;}
.y215{bottom:357.850012px;}
.yaa{bottom:359.122500px;}
.y1c2{bottom:359.125500px;}
.y10d{bottom:359.632069px;}
.y1b{bottom:359.971500px;}
.y1df{bottom:359.973000px;}
.y171{bottom:362.692500px;}
.y192{bottom:364.822500px;}
.yce{bottom:366.350050px;}
.y24d{bottom:367.798491px;}
.y127{bottom:370.519500px;}
.y214{bottom:372.137034px;}
.y3b{bottom:373.494551px;}
.y10c{bottom:378.341035px;}
.ya9{bottom:378.597000px;}
.y1c1{bottom:378.600000px;}
.y16b{bottom:379.615500px;}
.y24c{bottom:382.085512px;}
.y67{bottom:383.956500px;}
.y191{bottom:384.297000px;}
.y16c{bottom:384.973500px;}
.ycd{bottom:385.144215px;}
.y213{bottom:386.337656px;}
.y1de{bottom:387.015000px;}
.y3a{bottom:389.991945px;}
.y126{bottom:390.078000px;}
.y24b{bottom:396.372534px;}
.y10a{bottom:397.134000px;}
.ya8{bottom:398.071500px;}
.y1c0{bottom:398.074500px;}
.y10b{bottom:402.490500px;}
.y66{bottom:403.429500px;}
.ycc{bottom:403.853181px;}
.y190{bottom:403.855500px;}
.y212{bottom:405.897412px;}
.y39{bottom:406.489339px;}
.y1a{bottom:409.465500px;}
.y125{bottom:409.552500px;}
.y24a{bottom:410.573156px;}
.y1dd{bottom:413.971500px;}
.y106{bottom:415.843057px;}
.y109{bottom:415.843679px;}
.ya7{bottom:417.630000px;}
.y1bf{bottom:417.633000px;}
.y211{bottom:420.098034px;}
.y16a{bottom:420.944888px;}
.y107{bottom:421.200000px;}
.ycb{bottom:422.646146px;}
.y65{bottom:422.904000px;}
.y38{bottom:422.986733px;}
.y18f{bottom:423.328500px;}
.y124{bottom:429.025500px;}
.y249{bottom:430.047713px;}
.y105{bottom:430.128879px;}
.y108{bottom:430.129500px;}
.y19{bottom:430.470000px;}
.y210{bottom:434.385056px;}
.ya6{bottom:437.104500px;}
.y1be{bottom:437.107500px;}
.y1dc{bottom:439.483500px;}
.yca{bottom:441.355112px;}
.y64{bottom:442.462500px;}
.y18e{bottom:442.803000px;}
.y248{bottom:444.333534px;}
.y169{bottom:447.987750px;}
.y37{bottom:448.498414px;}
.y123{bottom:448.584000px;}
.y18{bottom:451.474500px;}
.y103{bottom:452.409000px;}
.y20f{bottom:453.858412px;}
.ya5{bottom:456.577500px;}
.y1bd{bottom:456.580500px;}
.y104{bottom:457.681500px;}
.y247{bottom:458.620556px;}
.yc9{bottom:460.148077px;}
.y63{bottom:461.937000px;}
.y18d{bottom:462.361500px;}
.y168{bottom:465.931125px;}
.yc4{bottom:466.951500px;}
.y122{bottom:468.058500px;}
.y20e{bottom:468.145434px;}
.y17{bottom:472.479000px;}
.y36{bottom:474.010095px;}
.ya4{bottom:476.136000px;}
.y1bc{bottom:476.139000px;}
.y246{bottom:478.093912px;}
.y62{bottom:481.410000px;}
.y18c{bottom:481.836000px;}
.yc8{bottom:482.343000px;}
.y20d{bottom:482.347256px;}
.y167{bottom:483.958500px;}
.yc3{bottom:486.426000px;}
.y121{bottom:487.533000px;}
.y166{bottom:489.316500px;}
.y1db{bottom:490.678500px;}
.y245{bottom:492.295735px;}
.ya3{bottom:495.610500px;}
.y1bb{bottom:495.613500px;}
.y16{bottom:497.991000px;}
.y35{bottom:499.521776px;}
.y61{bottom:500.970000px;}
.yeb{bottom:501.054000px;}
.y18b{bottom:501.309000px;}
.y20c{bottom:501.905812px;}
.y165{bottom:501.987000px;}
.yc2{bottom:505.984500px;}
.y244{bottom:506.582756px;}
.y120{bottom:507.091500px;}
.y164{bottom:507.259500px;}
.y1da{bottom:510.151500px;}
.y274{bottom:511.855490px;}
.ya2{bottom:515.085000px;}
.y1ba{bottom:515.088000px;}
.y20b{bottom:516.107634px;}
.y163{bottom:519.930000px;}
.y60{bottom:520.443000px;}
.yea{bottom:520.527000px;}
.y18a{bottom:520.869000px;}
.y34{bottom:525.033457px;}
.y162{bottom:525.288000px;}
.yc1{bottom:525.459000px;}
.y243{bottom:526.056113px;}
.y11f{bottom:526.564500px;}
.y1d9{bottom:529.626000px;}
.y20a{bottom:530.394656px;}
.ya1{bottom:534.643500px;}
.yc7{bottom:534.646500px;}
.y161{bottom:537.962273px;}
.y5f{bottom:539.917500px;}
.ye9{bottom:540.085500px;}
.y189{bottom:540.342000px;}
.y242{bottom:540.343134px;}
.yc0{bottom:544.932000px;}
.y15{bottom:547.399500px;}
.y1d8{bottom:549.184500px;}
.y209{bottom:549.868012px;}
.y33{bottom:550.545138px;}
.ya0{bottom:554.116500px;}
.y9e{bottom:554.119500px;}
.y241{bottom:554.544957px;}
.y160{bottom:555.990848px;}
.y5e{bottom:559.476000px;}
.ye8{bottom:559.560000px;}
.y273{bottom:559.816491px;}
.y188{bottom:559.816500px;}
.y9f{bottom:560.749500px;}
.y14d{bottom:563.471888px;}
.y208{bottom:564.155034px;}
.ybf{bottom:564.490500px;}
.ybd{bottom:564.493500px;}
.y32{bottom:567.042532px;}
.y14{bottom:568.404000px;}
.y1d7{bottom:568.659000px;}
.ybe{bottom:571.125000px;}
.y9d{bottom:573.594000px;}
.y240{bottom:574.103512px;}
.y207{bottom:578.355656px;}
.y5d{bottom:578.950500px;}
.ye7{bottom:579.034500px;}
.y187{bottom:579.291000px;}
.y31{bottom:583.541126px;}
.ybc{bottom:583.966500px;}
.y15f{bottom:584.053697px;}
.y1d6{bottom:588.132000px;}
.y23f{bottom:588.305335px;}
.y13{bottom:589.408500px;}
.y14c{bottom:590.429551px;}
.y206{bottom:592.642678px;}
.y9c{bottom:593.068500px;}
.y15e{bottom:598.339518px;}
.y5c{bottom:598.423500px;}
.ye6{bottom:598.593000px;}
.y186{bottom:598.849500px;}
.y30{bottom:600.038520px;}
.y23e{bottom:602.591156px;}
.ybb{bottom:603.441000px;}
.y272{bottom:607.863890px;}
.y14b{bottom:608.458125px;}
.y12{bottom:610.413000px;}
.y205{bottom:612.116034px;}
.y9b{bottom:612.627000px;}
.y1d5{bottom:613.644000px;}
.y2f{bottom:616.535913px;}
.y23d{bottom:616.792979px;}
.y15d{bottom:617.048484px;}
.y5b{bottom:617.898000px;}
.ye5{bottom:618.067500px;}
.y185{bottom:618.322500px;}
.y271{bottom:622.065713px;}
.yba{bottom:622.999500px;}
.y204{bottom:626.403056px;}
.y14a{bottom:626.485500px;}
.y15c{bottom:631.335506px;}
.y11{bottom:631.417500px;}
.y149{bottom:631.758000px;}
.y9a{bottom:632.101500px;}
.y2e{bottom:633.033307px;}
.y23c{bottom:636.351534px;}
.y5a{bottom:637.456500px;}
.ye4{bottom:637.540500px;}
.y184{bottom:637.797000px;}
.y203{bottom:640.604878px;}
.yb9{bottom:642.474000px;}
.y148{bottom:644.428500px;}
.y147{bottom:649.785000px;}
.y15b{bottom:650.128471px;}
.y23b{bottom:650.553357px;}
.y99{bottom:651.574500px;}
.y270{bottom:655.826091px;}
.y10{bottom:656.929500px;}
.y59{bottom:656.931000px;}
.ye3{bottom:657.015000px;}
.y183{bottom:657.355500px;}
.y2d{bottom:657.609000px;}
.y202{bottom:660.163434px;}
.yb8{bottom:661.947000px;}
.y146{bottom:662.457000px;}
.y15a{bottom:664.330293px;}
.y23a{bottom:664.840378px;}
.y145{bottom:667.813500px;}
.y26f{bottom:670.111912px;}
.y98{bottom:671.133000px;}
.y1d4{bottom:673.767000px;}
.y201{bottom:674.365256px;}
.y58{bottom:676.404000px;}
.ye2{bottom:676.573500px;}
.y182{bottom:676.830000px;}
.y239{bottom:679.041001px;}
.y144{bottom:680.488091px;}
.y159{bottom:683.123259px;}
.y26e{bottom:684.313735px;}
.yb7{bottom:687.457500px;}
.y200{bottom:688.651077px;}
.y97{bottom:690.607500px;}
.y1d3{bottom:693.325500px;}
.y57{bottom:695.964000px;}
.ye1{bottom:696.048000px;}
.y181{bottom:696.303000px;}
.y158{bottom:697.325081px;}
.y143{bottom:698.430267px;}
.y238{bottom:698.600756px;}
.y1ff{bottom:702.852900px;}
.y26d{bottom:703.873490px;}
.y96{bottom:710.082000px;}
.y237{bottom:712.802578px;}
.y56{bottom:715.437000px;}
.ye0{bottom:715.521000px;}
.y157{bottom:716.119246px;}
.y26c{bottom:718.074113px;}
.yf{bottom:718.413000px;}
.y1d2{bottom:718.837500px;}
.y180{bottom:721.813500px;}
.y1fe{bottom:722.412655px;}
.y142{bottom:726.578315px;}
.y236{bottom:727.088400px;}
.y95{bottom:729.640500px;}
.y156{bottom:730.319869px;}
.y26b{bottom:732.361134px;}
.y55{bottom:734.911500px;}
.ydf{bottom:735.079500px;}
.y1fd{bottom:736.613278px;}
.y2c{bottom:744.520500px;}
.y141{bottom:745.372480px;}
.y235{bottom:746.562956px;}
.y155{bottom:749.114034px;}
.y94{bottom:749.115000px;}
.y1fc{bottom:750.900299px;}
.y54{bottom:754.470000px;}
.y1b9{bottom:760.677338px;}
.y234{bottom:760.848778px;}
.y2b{bottom:761.782500px;}
.y154{bottom:763.315856px;}
.y140{bottom:764.081447px;}
.y26a{bottom:766.121512px;}
.y93{bottom:768.588000px;}
.y1d1{bottom:769.947000px;}
.y1fb{bottom:770.373656px;}
.y102{bottom:771.988388px;}
.y53{bottom:773.944500px;}
.y233{bottom:775.050600px;}
.ye{bottom:778.706138px;}
.y2a{bottom:778.960500px;}
.y269{bottom:780.323334px;}
.y153{bottom:782.108821px;}
.y13f{bottom:782.874412px;}
.y1fa{bottom:784.660677px;}
.y1b8{bottom:787.719000px;}
.y92{bottom:788.062500px;}
.y232{bottom:789.337622px;}
.y1d0{bottom:789.420000px;}
.y1b7{bottom:793.077000px;}
.y52{bottom:793.417500px;}
.y268{bottom:794.609156px;}
.y29{bottom:796.224000px;}
.y152{bottom:796.310644px;}
.y1f9{bottom:798.862500px;}
.y101{bottom:798.946051px;}
.y13e{bottom:801.583378px;}
.y1b6{bottom:805.747500px;}
.y83{bottom:806.594592px;}
.y91{bottom:807.621000px;}
.yd{bottom:808.724962px;}
.y231{bottom:808.810978px;}
.y1b5{bottom:811.020000px;}
.y51{bottom:812.892000px;}
.y1f8{bottom:813.148321px;}
.y28{bottom:813.486000px;}
.y267{bottom:814.083712px;}
.y1cf{bottom:814.932000px;}
.y151{bottom:815.104809px;}
.y100{bottom:816.974625px;}
.y13d{bottom:820.376343px;}
.y82{bottom:823.091986px;}
.y230{bottom:823.098000px;}
.yc{bottom:823.692375px;}
.y90{bottom:827.095500px;}
.y266{bottom:828.369534px;}
.y50{bottom:832.450500px;}
.y1f7{bottom:832.622878px;}
.y1b4{bottom:833.811179px;}
.y150{bottom:833.812575px;}
.yff{bottom:835.002000px;}
.y22f{bottom:837.298622px;}
.yb{bottom:838.743787px;}
.y13c{bottom:839.085309px;}
.yfe{bottom:840.274500px;}
.y265{bottom:842.571356px;}
.y8f{bottom:846.568500px;}
.y1f6{bottom:846.908699px;}
.y1b3{bottom:848.097000px;}
.y1b1{bottom:848.099419px;}
.y14f{bottom:848.099596px;}
.y81{bottom:848.603667px;}
.y4f{bottom:851.925000px;}
.yfd{bottom:852.945000px;}
.y1b2{bottom:853.455000px;}
.ya{bottom:853.710000px;}
.y22e{bottom:856.858378px;}
.y13b{bottom:857.794275px;}
.yfc{bottom:858.303000px;}
.y1f5{bottom:861.110522px;}
.y264{bottom:862.045913px;}
.y80{bottom:865.101061px;}
.y8e{bottom:866.127000px;}
.y1b0{bottom:866.807185px;}
.y14e{bottom:866.808562px;}
.y22d{bottom:871.059000px;}
.y4e{bottom:871.398000px;}
.y263{bottom:876.331734px;}
.y13a{bottom:876.587240px;}
.y1f4{bottom:880.585078px;}
.y9{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.yfb{bottom:881.094384px;}
.y7f{bottom:881.598455px;}
.y22c{bottom:885.346022px;}
.y1af{bottom:885.601350px;}
.y8d{bottom:885.601500px;}
.y8{bottom:886.705500px;}
.y262{bottom:890.618756px;}
.y1f3{bottom:894.870900px;}
.y139{bottom:895.296206px;}
.y4d{bottom:896.910000px;}
.y5{bottom:897.250500px;}
.y7e{bottom:898.095849px;}
.y22b{bottom:899.547844px;}
.yfa{bottom:899.803350px;}
.y6{bottom:903.202500px;}
.y1ae{bottom:904.309116px;}
.y8c{bottom:905.076000px;}
.y1f2{bottom:909.157921px;}
.y261{bottom:910.092112px;}
.y22a{bottom:913.833666px;}
.y138{bottom:914.089171px;}
.y7d{bottom:914.594442px;}
.yf9{bottom:918.596315px;}
.y1ad{bottom:923.103281px;}
.y260{bottom:924.293935px;}
.y8b{bottom:924.634500px;}
.y1f1{bottom:928.631278px;}
.y7c{bottom:931.091836px;}
.y137{bottom:932.798138px;}
.y229{bottom:933.308222px;}
.y4{bottom:934.670100px;}
.yf8{bottom:937.305281px;}
.y25f{bottom:938.580956px;}
.y1ac{bottom:941.812247px;}
.y1f0{bottom:942.833100px;}
.y8a{bottom:944.109000px;}
.y7b{bottom:947.589230px;}
.y228{bottom:947.595244px;}
.y136{bottom:951.592303px;}
.y25e{bottom:952.866778px;}
.y1ab{bottom:956.098069px;}
.yf7{bottom:956.099446px;}
.y1ef{bottom:957.120122px;}
.y89{bottom:963.582000px;}
.y7a{bottom:964.086624px;}
.y227{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y135{bottom:970.300069px;}
.y25d{bottom:972.341334px;}
.y1aa{bottom:974.807035px;}
.yf6{bottom:974.807212px;}
.y1ee{bottom:976.593478px;}
.y79{bottom:980.584018px;}
.y88{bottom:983.140500px;}
.y226{bottom:986.541957px;}
.y134{bottom:989.094234px;}
.y1ed{bottom:990.880500px;}
.y1a8{bottom:993.600000px;}
.yf5{bottom:993.601378px;}
.y78{bottom:997.081411px;}
.y1a9{bottom:998.958000px;}
.y225{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y87{bottom:1002.615000px;}
.y1ec{bottom:1005.081122px;}
.yf4{bottom:1007.802000px;}
.y1a3{bottom:1012.308000px;}
.y1a7{bottom:1012.309679px;}
.y1a2{bottom:1012.310256px;}
.y4c{bottom:1013.074500px;}
.y77{bottom:1013.578805px;}
.y224{bottom:1015.116000px;}
.y1a5{bottom:1017.666000px;}
.y86{bottom:1022.089500px;}
.y1eb{bottom:1024.640878px;}
.y1a4{bottom:1026.593821px;}
.y1a6{bottom:1026.595500px;}
.y1a1{bottom:1026.596077px;}
.yef{bottom:1026.596256px;}
.yf3{bottom:1026.596878px;}
.y76{bottom:1030.076199px;}
.yf0{bottom:1031.952000px;}
.y4b{bottom:1034.079000px;}
.y223{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y1ea{bottom:1038.841500px;}
.yee{bottom:1040.796879px;}
.yf1{bottom:1040.797500px;}
.y85{bottom:1041.562500px;}
.yf2{bottom:1046.154000px;}
.y75{bottom:1046.574793px;}
.y1a0{bottom:1048.791000px;}
.y19e{bottom:1048.791179px;}
.y19f{bottom:1054.147500px;}
.y1e9{bottom:1059.079500px;}
.y4a{bottom:1059.591000px;}
.y84{bottom:1061.121000px;}
.y74{bottom:1063.072186px;}
.yec{bottom:1063.077000px;}
.yed{bottom:1068.435000px;}
.y73{bottom:1118.692500px;}
.h13{height:22.716450px;}
.h11{height:23.996250px;}
.h4{height:27.932275px;}
.hf{height:29.996550px;}
.h12{height:34.079574px;}
.hb{height:34.968313px;}
.h10{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h9{height:44.175000px;}
.ha{height:45.000000px;}
.h14{height:46.500000px;}
.h8{height:53.543069px;}
.he{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:54.000000px;}
.x26{left:58.592100px;}
.x25{left:60.718050px;}
.xf{left:71.433000px;}
.x53{left:83.425848px;}
.x57{left:92.182650px;}
.x58{left:96.349500px;}
.x1b{left:219.743965px;}
.x24{left:221.185510px;}
.x3e{left:230.114599px;}
.x3d{left:239.384483px;}
.x3f{left:241.765253px;}
.x37{left:268.724895px;}
.x42{left:279.014844px;}
.x34{left:286.327500px;}
.x35{left:296.617500px;}
.x1{left:300.018000px;}
.x63{left:307.332000px;}
.x1c{left:313.115998px;}
.x10{left:317.961000px;}
.x64{left:332.247289px;}
.x27{left:362.182500px;}
.x28{left:366.349500px;}
.x4b{left:375.279000px;}
.x29{left:377.318563px;}
.x33{left:378.850500px;}
.x19{left:380.806500px;}
.x1a{left:384.973500px;}
.x1d{left:391.520618px;}
.x11{left:393.987000px;}
.xc{left:397.984500px;}
.x59{left:399.087716px;}
.x60{left:400.536000px;}
.xd{left:403.512000px;}
.x16{left:408.699000px;}
.x52{left:410.314962px;}
.x18{left:412.356000px;}
.x2{left:417.457500px;}
.x4e{left:419.668845px;}
.x3{left:422.985000px;}
.x2a{left:458.360750px;}
.x5a{left:482.085878px;}
.x38{left:488.636546px;}
.x36{left:496.119000px;}
.x54{left:498.584659px;}
.x4{left:500.967000px;}
.x5{left:514.914000px;}
.x4c{left:521.205576px;}
.x2b{left:529.453861px;}
.x4d{left:532.345037px;}
.x40{left:550.459500px;}
.x41{left:554.541000px;}
.x4f{left:560.407886px;}
.x43{left:566.616449px;}
.x2c{left:574.356000px;}
.x1e{left:585.580500px;}
.x6{left:595.870500px;}
.x12{left:598.677000px;}
.x7{left:601.398000px;}
.x13{left:604.035000px;}
.x50{left:611.772044px;}
.x17{left:615.514500px;}
.x45{left:617.979407px;}
.x44{left:621.381364px;}
.x1f{left:623.424000px;}
.x20{left:635.925000px;}
.x21{left:652.336500px;}
.x2d{left:656.163000px;}
.x51{left:663.135002px;}
.x5b{left:664.668000px;}
.x46{left:673.170317px;}
.x2e{left:682.611000px;}
.x5c{left:686.011356px;}
.x2f{left:703.360500px;}
.x5d{left:712.374000px;}
.x47{left:719.347500px;}
.x8{left:720.963000px;}
.x39{left:722.239500px;}
.x9{left:726.576000px;}
.x5e{left:733.719000px;}
.x61{left:735.249016px;}
.x30{left:750.982500px;}
.x14{left:753.024000px;}
.x15{left:758.296500px;}
.x3a{left:759.996000px;}
.x55{left:762.633000px;}
.x56{left:766.714500px;}
.x48{left:772.923000px;}
.x5f{left:781.341000px;}
.x3b{left:798.945000px;}
.x49{left:810.679500px;}
.x22{left:817.398000px;}
.x31{left:820.545000px;}
.x62{left:821.563937px;}
.x4a{left:824.881500px;}
.x3c{left:829.729500px;}
.xa{left:843.420000px;}
.x32{left:846.991500px;}
.xb{left:848.947500px;}
.x23{left:855.241500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.123200pt;}
.ls8{letter-spacing:-1.067200pt;}
.lsc{letter-spacing:-1.066653pt;}
.ls9{letter-spacing:-0.214663pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.213331pt;}
.lsa{letter-spacing:-0.212800pt;}
.ls6{letter-spacing:-0.211200pt;}
.lsd{letter-spacing:-0.211198pt;}
.ls14{letter-spacing:-0.190548pt;}
.ls7{letter-spacing:-0.188775pt;}
.lsf{letter-spacing:-0.188423pt;}
.lse{letter-spacing:0.000000pt;}
.ls3{letter-spacing:8.396695pt;}
.ls2{letter-spacing:9.232951pt;}
.ls10{letter-spacing:9.655346pt;}
.ls11{letter-spacing:9.779078pt;}
.ls12{letter-spacing:9.830277pt;}
.ls13{letter-spacing:11.642667pt;}
.ls15{letter-spacing:11.845333pt;}
.ls0{letter-spacing:18.474436pt;}
.ls1{letter-spacing:18.478702pt;}
.wsc1{word-spacing:-27.519656pt;}
.ws1e{word-spacing:-22.442386pt;}
.ws101{word-spacing:-17.772652pt;}
.ws60{word-spacing:-14.912000pt;}
.ws79{word-spacing:-14.896000pt;}
.ws7a{word-spacing:-14.709333pt;}
.ws76{word-spacing:-14.576000pt;}
.wsd{word-spacing:-11.775853pt;}
.wsaf{word-spacing:-11.686254pt;}
.wsc8{word-spacing:-11.617988pt;}
.wsa5{word-spacing:-11.528389pt;}
.ws25{word-spacing:-9.599880pt;}
.ws5b{word-spacing:-3.961567pt;}
.ws102{word-spacing:-3.763169pt;}
.wsff{word-spacing:-3.628770pt;}
.ws11c{word-spacing:-3.208493pt;}
.ws14d{word-spacing:-3.199960pt;}
.ws12c{word-spacing:-3.174360pt;}
.ws169{word-spacing:-3.140227pt;}
.ws13d{word-spacing:-3.084761pt;}
.ws15{word-spacing:-3.080533pt;}
.ws130{word-spacing:-3.071962pt;}
.ws16f{word-spacing:-3.054895pt;}
.ws120{word-spacing:-3.037829pt;}
.ws15c{word-spacing:-3.025029pt;}
.ws164{word-spacing:-3.020762pt;}
.ws13e{word-spacing:-3.016496pt;}
.ws155{word-spacing:-2.995163pt;}
.ws14a{word-spacing:-2.986629pt;}
.ws165{word-spacing:-2.982363pt;}
.ws118{word-spacing:-2.978096pt;}
.ws163{word-spacing:-2.973829pt;}
.ws6{word-spacing:-2.971200pt;}
.ws125{word-spacing:-2.969563pt;}
.ws15f{word-spacing:-2.965296pt;}
.ws137{word-spacing:-2.961030pt;}
.ws144{word-spacing:-2.956763pt;}
.ws13{word-spacing:-2.953867pt;}
.ws132{word-spacing:-2.952496pt;}
.ws115{word-spacing:-2.948230pt;}
.ws11f{word-spacing:-2.943963pt;}
.ws16c{word-spacing:-2.935430pt;}
.ws151{word-spacing:-2.931163pt;}
.ws126{word-spacing:-2.918364pt;}
.ws161{word-spacing:-2.914097pt;}
.ws122{word-spacing:-2.909830pt;}
.ws140{word-spacing:-2.905564pt;}
.ws1a{word-spacing:-2.903200pt;}
.ws12d{word-spacing:-2.901297pt;}
.ws134{word-spacing:-2.897030pt;}
.wsf{word-spacing:-2.893067pt;}
.ws11d{word-spacing:-2.892764pt;}
.ws63{word-spacing:-2.888497pt;}
.ws8{word-spacing:-2.884800pt;}
.ws14e{word-spacing:-2.884231pt;}
.ws123{word-spacing:-2.879964pt;}
.ws153{word-spacing:-2.875697pt;}
.ws156{word-spacing:-2.871431pt;}
.ws4{word-spacing:-2.865600pt;}
.ws13c{word-spacing:-2.862898pt;}
.ws11{word-spacing:-2.862667pt;}
.ws11b{word-spacing:-2.858631pt;}
.ws129{word-spacing:-2.854364pt;}
.ws170{word-spacing:-2.845831pt;}
.ws18{word-spacing:-2.837333pt;}
.ws16a{word-spacing:-2.837298pt;}
.ws121{word-spacing:-2.828765pt;}
.ws19{word-spacing:-2.827200pt;}
.ws13a{word-spacing:-2.824498pt;}
.ws16d{word-spacing:-2.820231pt;}
.wsf6{word-spacing:-2.815965pt;}
.ws12{word-spacing:-2.812000pt;}
.ws15d{word-spacing:-2.807432pt;}
.wse{word-spacing:-2.806933pt;}
.ws131{word-spacing:-2.803165pt;}
.ws10{word-spacing:-2.801867pt;}
.ws14b{word-spacing:-2.781832pt;}
.ws7{word-spacing:-2.779200pt;}
.ws1b{word-spacing:-2.777565pt;}
.ws114{word-spacing:-2.760499pt;}
.ws1d{word-spacing:-2.747699pt;}
.ws139{word-spacing:-2.743432pt;}
.ws127{word-spacing:-2.739166pt;}
.ws166{word-spacing:-2.730633pt;}
.ws2{word-spacing:-2.726400pt;}
.ws157{word-spacing:-2.726366pt;}
.ws14c{word-spacing:-2.722099pt;}
.ws145{word-spacing:-2.717833pt;}
.ws13f{word-spacing:-2.709299pt;}
.ws116{word-spacing:-2.705033pt;}
.ws138{word-spacing:-2.696500pt;}
.ws148{word-spacing:-2.692233pt;}
.ws3{word-spacing:-2.688000pt;}
.ws12e{word-spacing:-2.687966pt;}
.ws124{word-spacing:-2.683700pt;}
.ws160{word-spacing:-2.670900pt;}
.ws5{word-spacing:-2.668800pt;}
.ws167{word-spacing:-2.666633pt;}
.ws14f{word-spacing:-2.662367pt;}
.ws117{word-spacing:-2.653833pt;}
.ws14{word-spacing:-2.649867pt;}
.ws149{word-spacing:-2.645300pt;}
.ws12f{word-spacing:-2.641034pt;}
.wsa{word-spacing:-2.628234pt;}
.ws154{word-spacing:-2.623967pt;}
.ws147{word-spacing:-2.619701pt;}
.ws162{word-spacing:-2.615434pt;}
.ws119{word-spacing:-2.611167pt;}
.ws16{word-spacing:-2.609333pt;}
.ws15a{word-spacing:-2.602634pt;}
.ws158{word-spacing:-2.598368pt;}
.ws128{word-spacing:-2.589834pt;}
.ws12a{word-spacing:-2.585568pt;}
.ws11a{word-spacing:-2.572768pt;}
.ws159{word-spacing:-2.568501pt;}
.ws168{word-spacing:-2.559968pt;}
.ws136{word-spacing:-2.555701pt;}
.ws150{word-spacing:-2.551435pt;}
.ws141{word-spacing:-2.517302pt;}
.ws146{word-spacing:-2.513035pt;}
.ws17{word-spacing:-2.502933pt;}
.ws11e{word-spacing:-2.500235pt;}
.ws13b{word-spacing:-2.495969pt;}
.ws135{word-spacing:-2.483169pt;}
.ws152{word-spacing:-2.474636pt;}
.ws113{word-spacing:-2.470369pt;}
.ws133{word-spacing:-2.466103pt;}
.ws15b{word-spacing:-2.457569pt;}
.ws16b{word-spacing:-2.453303pt;}
.wsc{word-spacing:-2.444769pt;}
.wsb{word-spacing:-2.440503pt;}
.ws1{word-spacing:-2.428800pt;}
.ws9{word-spacing:-2.385037pt;}
.ws0{word-spacing:-2.355171pt;}
.ws16e{word-spacing:-2.342371pt;}
.ws15e{word-spacing:-2.338104pt;}
.ws143{word-spacing:-2.269838pt;}
.ws30{word-spacing:-0.938655pt;}
.ws89{word-spacing:-0.864000pt;}
.ws85{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.814923pt;}
.ws2d{word-spacing:-0.793590pt;}
.ws2a{word-spacing:-0.780790pt;}
.ws68{word-spacing:-0.772257pt;}
.ws24{word-spacing:-0.767990pt;}
.ws6c{word-spacing:-0.763724pt;}
.ws3b{word-spacing:-0.746657pt;}
.ws35{word-spacing:-0.725324pt;}
.ws28{word-spacing:-0.703991pt;}
.ws6b{word-spacing:-0.695458pt;}
.ws20{word-spacing:-0.669858pt;}
.ws2c{word-spacing:-0.661325pt;}
.ws38{word-spacing:-0.657058pt;}
.ws3c{word-spacing:-0.648525pt;}
.ws2f{word-spacing:-0.644259pt;}
.ws65{word-spacing:-0.639992pt;}
.ws31{word-spacing:-0.601592pt;}
.ws34{word-spacing:-0.597326pt;}
.wsa7{word-spacing:-0.593059pt;}
.ws21{word-spacing:-0.588793pt;}
.ws36{word-spacing:-0.580259pt;}
.ws37{word-spacing:-0.575993pt;}
.ws2e{word-spacing:-0.563193pt;}
.ws1f{word-spacing:-0.554660pt;}
.ws69{word-spacing:-0.550393pt;}
.ws39{word-spacing:-0.546127pt;}
.ws66{word-spacing:-0.541860pt;}
.ws3a{word-spacing:-0.529060pt;}
.ws99{word-spacing:-0.511994pt;}
.ws26{word-spacing:-0.507727pt;}
.ws96{word-spacing:-0.503460pt;}
.wsc2{word-spacing:-0.494927pt;}
.wse6{word-spacing:-0.485333pt;}
.wsf9{word-spacing:-0.480000pt;}
.ws3d{word-spacing:-0.477861pt;}
.wse5{word-spacing:-0.474667pt;}
.wsbc{word-spacing:-0.473594pt;}
.wsf0{word-spacing:-0.469333pt;}
.ws22{word-spacing:-0.469327pt;}
.wsc0{word-spacing:-0.465061pt;}
.ws29{word-spacing:-0.460794pt;}
.ws44{word-spacing:-0.458667pt;}
.wsd1{word-spacing:-0.456528pt;}
.ws88{word-spacing:-0.453333pt;}
.ws70{word-spacing:-0.442667pt;}
.wsa6{word-spacing:-0.439461pt;}
.wse7{word-spacing:-0.426661pt;}
.ws67{word-spacing:-0.422395pt;}
.ws47{word-spacing:-0.421333pt;}
.ws32{word-spacing:-0.418128pt;}
.ws48{word-spacing:-0.416000pt;}
.ws23{word-spacing:-0.409595pt;}
.wsfd{word-spacing:-0.405333pt;}
.ws109{word-spacing:-0.400000pt;}
.ws46{word-spacing:-0.394667pt;}
.wsa9{word-spacing:-0.389333pt;}
.ws4f{word-spacing:-0.384000pt;}
.ws6d{word-spacing:-0.378667pt;}
.ws27{word-spacing:-0.371195pt;}
.wsef{word-spacing:-0.368000pt;}
.ws8a{word-spacing:-0.362667pt;}
.wseb{word-spacing:-0.362662pt;}
.wsb0{word-spacing:-0.358396pt;}
.wsed{word-spacing:-0.357333pt;}
.ws4c{word-spacing:-0.352000pt;}
.ws6f{word-spacing:-0.346667pt;}
.ws80{word-spacing:-0.341333pt;}
.ws9c{word-spacing:-0.341329pt;}
.wsea{word-spacing:-0.337062pt;}
.wscc{word-spacing:-0.336000pt;}
.wsc5{word-spacing:-0.332796pt;}
.ws59{word-spacing:-0.330667pt;}
.wsa4{word-spacing:-0.328529pt;}
.ws7b{word-spacing:-0.325333pt;}
.ws2b{word-spacing:-0.324263pt;}
.ws56{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.315729pt;}
.ws4a{word-spacing:-0.314667pt;}
.ws81{word-spacing:-0.309333pt;}
.ws6a{word-spacing:-0.307196pt;}
.ws77{word-spacing:-0.304000pt;}
.ws9b{word-spacing:-0.302930pt;}
.wsab{word-spacing:-0.298667pt;}
.ws98{word-spacing:-0.298663pt;}
.ws6e{word-spacing:-0.293333pt;}
.ws93{word-spacing:-0.288000pt;}
.ws5a{word-spacing:-0.282667pt;}
.ws94{word-spacing:-0.277333pt;}
.ws64{word-spacing:-0.273063pt;}
.ws92{word-spacing:-0.272000pt;}
.ws42{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.261333pt;}
.ws51{word-spacing:-0.256000pt;}
.wsbf{word-spacing:-0.255997pt;}
.wse8{word-spacing:-0.251730pt;}
.ws41{word-spacing:-0.250667pt;}
.wsa3{word-spacing:-0.247464pt;}
.ws7c{word-spacing:-0.245333pt;}
.ws49{word-spacing:-0.240000pt;}
.ws87{word-spacing:-0.234667pt;}
.ws62{word-spacing:-0.229333pt;}
.ws43{word-spacing:-0.224000pt;}
.ws3f{word-spacing:-0.218667pt;}
.wsf8{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.208000pt;}
.wsb3{word-spacing:-0.204797pt;}
.ws71{word-spacing:-0.202667pt;}
.wsd4{word-spacing:-0.200531pt;}
.wsf5{word-spacing:-0.197333pt;}
.ws52{word-spacing:-0.192000pt;}
.ws55{word-spacing:-0.186667pt;}
.ws75{word-spacing:-0.181333pt;}
.ws97{word-spacing:-0.179198pt;}
.ws73{word-spacing:-0.176000pt;}
.ws54{word-spacing:-0.170667pt;}
.ws9f{word-spacing:-0.170665pt;}
.wsd8{word-spacing:-0.166398pt;}
.ws84{word-spacing:-0.165333pt;}
.wsc7{word-spacing:-0.162131pt;}
.ws58{word-spacing:-0.160000pt;}
.ws74{word-spacing:-0.154667pt;}
.wsbd{word-spacing:-0.153598pt;}
.ws82{word-spacing:-0.149333pt;}
.wsac{word-spacing:-0.149331pt;}
.wsf2{word-spacing:-0.144000pt;}
.ws91{word-spacing:-0.138667pt;}
.wsb2{word-spacing:-0.136532pt;}
.wsca{word-spacing:-0.133333pt;}
.ws9e{word-spacing:-0.123732pt;}
.ws78{word-spacing:-0.122667pt;}
.wsa0{word-spacing:-0.119465pt;}
.ws8f{word-spacing:-0.117333pt;}
.ws90{word-spacing:-0.112000pt;}
.ws7d{word-spacing:-0.106667pt;}
.wsb6{word-spacing:-0.106665pt;}
.wsa8{word-spacing:-0.102399pt;}
.wse4{word-spacing:-0.101333pt;}
.ws8d{word-spacing:-0.096000pt;}
.wscb{word-spacing:-0.090667pt;}
.ws4d{word-spacing:-0.085333pt;}
.ws9d{word-spacing:-0.085332pt;}
.wsfa{word-spacing:-0.080000pt;}
.wsb7{word-spacing:-0.076799pt;}
.ws8c{word-spacing:-0.074667pt;}
.wsf3{word-spacing:-0.069333pt;}
.ws86{word-spacing:-0.064000pt;}
.ws53{word-spacing:-0.048000pt;}
.wsec{word-spacing:-0.042667pt;}
.wsfc{word-spacing:-0.037333pt;}
.wsc6{word-spacing:-0.034133pt;}
.wsfb{word-spacing:-0.032000pt;}
.ws72{word-spacing:-0.026667pt;}
.wsa2{word-spacing:-0.025600pt;}
.ws5e{word-spacing:-0.021333pt;}
.wse1{word-spacing:-0.017066pt;}
.wsf7{word-spacing:-0.016000pt;}
.wsa1{word-spacing:-0.012800pt;}
.ws5f{word-spacing:-0.010667pt;}
.ws7f{word-spacing:-0.005333pt;}
.ws3e{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.004267pt;}
.ws7e{word-spacing:0.005333pt;}
.wsbe{word-spacing:0.017066pt;}
.wsc4{word-spacing:0.021333pt;}
.ws61{word-spacing:0.026667pt;}
.ws8b{word-spacing:0.029866pt;}
.ws4e{word-spacing:0.037333pt;}
.ws4b{word-spacing:0.048000pt;}
.ws45{word-spacing:0.053333pt;}
.wscf{word-spacing:0.055466pt;}
.wsbb{word-spacing:0.059733pt;}
.wse0{word-spacing:0.068266pt;}
.ws10f{word-spacing:0.069333pt;}
.wsee{word-spacing:0.074667pt;}
.wsc9{word-spacing:0.080000pt;}
.ws8e{word-spacing:0.085333pt;}
.wse9{word-spacing:0.089599pt;}
.ws57{word-spacing:0.090667pt;}
.wsb9{word-spacing:0.093865pt;}
.wsf1{word-spacing:0.096000pt;}
.ws10d{word-spacing:0.101333pt;}
.ws9a{word-spacing:0.102399pt;}
.wsce{word-spacing:0.106665pt;}
.ws111{word-spacing:0.106667pt;}
.wsf4{word-spacing:0.117333pt;}
.wsdf{word-spacing:0.127998pt;}
.wsaa{word-spacing:0.128000pt;}
.wsc3{word-spacing:0.132265pt;}
.ws50{word-spacing:0.138667pt;}
.ws83{word-spacing:0.144000pt;}
.wsb1{word-spacing:0.153598pt;}
.ws104{word-spacing:0.160000pt;}
.wsad{word-spacing:0.174931pt;}
.wscd{word-spacing:0.179198pt;}
.wsfe{word-spacing:0.186667pt;}
.wse3{word-spacing:0.200531pt;}
.wse2{word-spacing:0.268797pt;}
.wsba{word-spacing:0.281596pt;}
.wsd6{word-spacing:0.290130pt;}
.wsae{word-spacing:0.302930pt;}
.ws110{word-spacing:0.304000pt;}
.ws100{word-spacing:0.362667pt;}
.ws106{word-spacing:0.368000pt;}
.wsd7{word-spacing:0.396795pt;}
.wsb8{word-spacing:0.460794pt;}
.ws5d{word-spacing:0.474667pt;}
.ws95{word-spacing:0.477861pt;}
.wsd5{word-spacing:0.588793pt;}
.ws105{word-spacing:0.592000pt;}
.ws10a{word-spacing:0.629333pt;}
.ws107{word-spacing:0.677333pt;}
.ws10b{word-spacing:0.752000pt;}
.ws108{word-spacing:0.800000pt;}
.ws10e{word-spacing:0.906667pt;}
.ws10c{word-spacing:0.912000pt;}
.ws103{word-spacing:1.029333pt;}
.wsda{word-spacing:13.222235pt;}
.wsd9{word-spacing:13.256368pt;}
.wsdb{word-spacing:13.337433pt;}
.wsde{word-spacing:24.614092pt;}
.wsdc{word-spacing:24.631159pt;}
.wsdd{word-spacing:24.737824pt;}
.ws1c{word-spacing:30.745216pt;}
.ws12b{word-spacing:41.637880pt;}
.ws142{word-spacing:41.642146pt;}
.ws112{word-spacing:41.697612pt;}
.wsb4{word-spacing:74.000142pt;}
.wsd2{word-spacing:185.286217pt;}
.wsd0{word-spacing:219.850052pt;}
._0{margin-left:-0.989854pt;}
._4{width:1.221067pt;}
._2{width:8.383895pt;}
._4f{width:9.419356pt;}
._5{width:10.366400pt;}
._7b{width:11.264000pt;}
._3{width:12.215733pt;}
._7{width:13.221867pt;}
._8{width:18.636567pt;}
._1{width:22.243200pt;}
._4e{width:34.405970pt;}
._6d{width:35.924884pt;}
._73{width:38.348321pt;}
._5e{width:52.492144pt;}
._65{width:63.047745pt;}
._44{width:71.380441pt;}
._5f{width:72.924955pt;}
._72{width:73.927609pt;}
._40{width:75.992650pt;}
._6c{width:78.407553pt;}
._2b{width:81.112586pt;}
._29{width:83.301359pt;}
._2f{width:87.781303pt;}
._61{width:92.013783pt;}
._32{width:96.881989pt;}
._2d{width:97.897443pt;}
._3e{width:102.202456pt;}
._6a{width:106.742132pt;}
._70{width:110.283421pt;}
._3b{width:113.632713pt;}
._3d{width:116.538277pt;}
._27{width:117.442799pt;}
._60{width:120.578759pt;}
._4a{width:122.669400pt;}
._69{width:124.397378pt;}
._77{width:126.500819pt;}
._11{width:131.279426pt;}
._15{width:132.508210pt;}
._45{width:133.446865pt;}
._35{width:136.096432pt;}
._47{width:137.005221pt;}
._21{width:141.536364pt;}
._4b{width:143.285676pt;}
._41{width:145.376316pt;}
._1a{width:146.856831pt;}
._79{width:147.791219pt;}
._31{width:149.924526pt;}
._2c{width:151.417841pt;}
._10{width:152.356496pt;}
._20{width:156.350046pt;}
._43{width:157.442299pt;}
._6f{width:165.096603pt;}
._f{width:167.170177pt;}
._26{width:170.963196pt;}
._13{width:172.793573pt;}
._3f{width:178.937497pt;}
._5b{width:180.422278pt;}
._51{width:181.510264pt;}
._71{width:183.797169pt;}
._a{width:185.038754pt;}
._12{width:187.607255pt;}
._5a{width:195.462090pt;}
._6b{width:196.477544pt;}
._38{width:198.431653pt;}
._34{width:204.618242pt;}
._53{width:209.469382pt;}
._76{width:216.297433pt;}
._b{width:233.110686pt;}
._23{width:242.279638pt;}
._17{width:256.257063pt;}
._18{width:262.298588pt;}
._d{width:266.445736pt;}
._1d{width:277.112269pt;}
._1f{width:293.274201pt;}
._67{width:317.022171pt;}
._16{width:320.317466pt;}
._37{width:328.448161pt;}
._30{width:343.551972pt;}
._3a{width:358.254722pt;}
._64{width:371.267892pt;}
._36{width:373.315867pt;}
._66{width:376.404895pt;}
._33{width:377.637946pt;}
._2e{width:388.300213pt;}
._39{width:403.079761pt;}
._63{width:413.251368pt;}
._25{width:423.248043pt;}
._2a{width:439.132644pt;}
._62{width:457.999608pt;}
._57{width:469.125176pt;}
._28{width:479.332675pt;}
._5c{width:508.679478pt;}
._58{width:514.012745pt;}
._56{width:529.133622pt;}
._42{width:531.423757pt;}
._4c{width:534.125994pt;}
._14{width:539.406591pt;}
._59{width:544.237434pt;}
._24{width:555.935451pt;}
._54{width:557.893826pt;}
._55{width:563.210026pt;}
._49{width:577.690912pt;}
._e{width:595.333358pt;}
._4d{width:597.402666pt;}
._6e{width:608.721991pt;}
._78{width:611.227963pt;}
._50{width:619.059995pt;}
._1c{width:623.467407pt;}
._52{width:624.411509pt;}
._1e{width:640.329062pt;}
._22{width:653.999292pt;}
._48{width:655.897935pt;}
._46{width:689.100719pt;}
._c{width:720.037933pt;}
._1b{width:723.126961pt;}
._75{width:732.999904pt;}
._19{width:742.552851pt;}
._74{width:766.202689pt;}
._5d{width:837.173535pt;}
._9{width:863.686270pt;}
._3c{width:967.087645pt;}
._68{width:1044.492544pt;}
._7a{width:1410.111440pt;}
._6{width:1432.954888pt;}
.fsa{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:35.551467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:61.332267pt;}
.fs8{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:48.000000pt;}
.yc6{bottom:106.356525pt;}
.yde{bottom:110.664904pt;}
.y11e{bottom:110.665233pt;}
.y72{bottom:110.665333pt;}
.y26{bottom:110.665400pt;}
.y17f{bottom:110.665634pt;}
.y49{bottom:110.666724pt;}
.yb6{bottom:111.197333pt;}
.y1ce{bottom:111.200000pt;}
.y25c{bottom:113.617325pt;}
.y1e8{bottom:117.318667pt;}
.y133{bottom:121.401333pt;}
.y48{bottom:125.331074pt;}
.y25b{bottom:126.315833pt;}
.yc5{bottom:126.992000pt;}
.y71{bottom:127.976000pt;}
.yb5{bottom:128.506667pt;}
.y1cd{bottom:128.509333pt;}
.y25{bottom:129.336067pt;}
.y222{bottom:130.095517pt;}
.y19d{bottom:133.648000pt;}
.y17e{bottom:134.702667pt;}
.ydd{bottom:134.703003pt;}
.y11d{bottom:134.703333pt;}
.y1e7{bottom:134.704000pt;}
.y132{bottom:138.712000pt;}
.y25a{bottom:138.939675pt;}
.y17d{bottom:139.389333pt;}
.y47{bottom:139.995424pt;}
.y221{bottom:142.795091pt;}
.y70{bottom:145.361333pt;}
.yb4{bottom:145.892000pt;}
.y1cc{bottom:145.894667pt;}
.y24{bottom:148.006733pt;}
.y17c{bottom:150.652000pt;}
.ydc{bottom:150.652671pt;}
.y11c{bottom:150.653000pt;}
.y19c{bottom:150.958667pt;}
.y46{bottom:154.660840pt;}
.y17b{bottom:155.414667pt;}
.y220{bottom:155.418933pt;}
.y131{bottom:156.022667pt;}
.y259{bottom:156.325058pt;}
.y1e6{bottom:158.666667pt;}
.y6f{bottom:162.672000pt;}
.yb3{bottom:163.202667pt;}
.y1cb{bottom:163.205333pt;}
.y11b{bottom:166.677333pt;}
.y23{bottom:166.677400pt;}
.y19b{bottom:168.268000pt;}
.y258{bottom:168.948900pt;}
.y45{bottom:169.325190pt;}
.y11a{bottom:171.438667pt;}
.y21f{bottom:172.804316pt;}
.y130{bottom:173.408000pt;}
.ydb{bottom:175.673158pt;}
.y17a{bottom:175.673675pt;}
.y6e{bottom:179.981333pt;}
.yb2{bottom:180.513333pt;}
.y1ca{bottom:180.516000pt;}
.y257{bottom:181.648475pt;}
.y119{bottom:182.702667pt;}
.y1e5{bottom:182.704000pt;}
.y44{bottom:183.989540pt;}
.y22{bottom:185.349333pt;}
.y21e{bottom:185.428158pt;}
.y19a{bottom:185.654667pt;}
.y118{bottom:187.389333pt;}
.y12f{bottom:190.718667pt;}
.yda{bottom:192.302283pt;}
.y179{bottom:192.303867pt;}
.y6d{bottom:197.366667pt;}
.yb1{bottom:197.898667pt;}
.y1c9{bottom:197.901333pt;}
.y117{bottom:198.652000pt;}
.y43{bottom:198.653890pt;}
.y256{bottom:198.958125pt;}
.y21d{bottom:202.813541pt;}
.y199{bottom:202.964000pt;}
.y116{bottom:203.414667pt;}
.y21{bottom:204.020000pt;}
.y1e4{bottom:206.666667pt;}
.y12e{bottom:208.028000pt;}
.yd9{bottom:209.008208pt;}
.y178{bottom:209.008725pt;}
.y255{bottom:211.657700pt;}
.y42{bottom:213.318240pt;}
.y6c{bottom:214.677333pt;}
.yb0{bottom:215.209333pt;}
.y1c8{bottom:215.210667pt;}
.y21c{bottom:215.437383pt;}
.y198{bottom:220.274667pt;}
.y20{bottom:222.690667pt;}
.y115{bottom:223.673492pt;}
.y254{bottom:224.280475pt;}
.y12d{bottom:225.413333pt;}
.yd8{bottom:225.637333pt;}
.yd6{bottom:225.637809pt;}
.y177{bottom:225.638917pt;}
.yd7{bottom:230.400000pt;}
.y1e3{bottom:230.704000pt;}
.y6b{bottom:231.988000pt;}
.yaf{bottom:232.518667pt;}
.y1c7{bottom:232.521333pt;}
.y21b{bottom:232.747033pt;}
.y41{bottom:235.995290pt;}
.y114{bottom:236.372000pt;}
.y112{bottom:236.372658pt;}
.y197{bottom:237.660000pt;}
.y113{bottom:241.058667pt;}
.y1f{bottom:241.361333pt;}
.y253{bottom:241.666925pt;}
.yd5{bottom:242.342667pt;}
.yd3{bottom:242.344197pt;}
.y176{bottom:242.344841pt;}
.y12c{bottom:242.724000pt;}
.y21a{bottom:245.446608pt;}
.yd4{bottom:247.105333pt;}
.y6a{bottom:249.297333pt;}
.yae{bottom:249.904000pt;}
.y1c6{bottom:249.906667pt;}
.y40{bottom:250.659640pt;}
.y111{bottom:253.002850pt;}
.y252{bottom:254.289700pt;}
.y1e2{bottom:254.665333pt;}
.y196{bottom:254.970667pt;}
.y175{bottom:258.973967pt;}
.yd2{bottom:258.974389pt;}
.y1e{bottom:260.032000pt;}
.y12b{bottom:260.034667pt;}
.y219{bottom:262.757325pt;}
.y3f{bottom:265.323990pt;}
.y69{bottom:266.682667pt;}
.y251{bottom:266.989275pt;}
.yad{bottom:267.214667pt;}
.y1c5{bottom:267.217333pt;}
.y110{bottom:269.707708pt;}
.y195{bottom:272.280000pt;}
.y218{bottom:275.455833pt;}
.yd1{bottom:275.679247pt;}
.y174{bottom:275.679891pt;}
.y12a{bottom:277.420000pt;}
.y1d{bottom:278.702667pt;}
.y1e1{bottom:278.704000pt;}
.y3e{bottom:279.989407pt;}
.y250{bottom:284.299992pt;}
.yac{bottom:284.525333pt;}
.y1c4{bottom:284.528000pt;}
.y10f{bottom:286.337900pt;}
.y217{bottom:288.079675pt;}
.y173{bottom:288.302667pt;}
.y68{bottom:289.360000pt;}
.y194{bottom:289.590667pt;}
.yd0{bottom:292.309439pt;}
.y129{bottom:294.729333pt;}
.y1e0{bottom:296.013333pt;}
.y24f{bottom:296.998500pt;}
.y1c{bottom:297.297333pt;}
.y216{bottom:300.778183pt;}
.yab{bottom:301.834667pt;}
.y1c3{bottom:301.837333pt;}
.y3d{bottom:302.666457pt;}
.y10e{bottom:302.968092pt;}
.y172{bottom:305.008159pt;}
.y16e{bottom:305.008672pt;}
.y193{bottom:306.976000pt;}
.ycf{bottom:309.015363pt;}
.y24e{bottom:309.622342pt;}
.y16f{bottom:309.769333pt;}
.y128{bottom:312.040000pt;}
.y3c{bottom:317.330807pt;}
.y170{bottom:317.706667pt;}
.y16d{bottom:317.707180pt;}
.y215{bottom:318.088900pt;}
.yaa{bottom:319.220000pt;}
.y1c2{bottom:319.222667pt;}
.y10d{bottom:319.672950pt;}
.y1b{bottom:319.974667pt;}
.y1df{bottom:319.976000pt;}
.y171{bottom:322.393333pt;}
.y192{bottom:324.286667pt;}
.yce{bottom:325.644489pt;}
.y24d{bottom:326.931992pt;}
.y127{bottom:329.350667pt;}
.y214{bottom:330.788475pt;}
.y3b{bottom:331.995157pt;}
.y10c{bottom:336.303142pt;}
.ya9{bottom:336.530667pt;}
.y1c1{bottom:336.533333pt;}
.y16b{bottom:337.436000pt;}
.y24c{bottom:339.631567pt;}
.y67{bottom:341.294667pt;}
.y191{bottom:341.597333pt;}
.y16c{bottom:342.198667pt;}
.ycd{bottom:342.350413pt;}
.y213{bottom:343.411250pt;}
.y1de{bottom:344.013333pt;}
.y3a{bottom:346.659507pt;}
.y126{bottom:346.736000pt;}
.y24b{bottom:352.331141pt;}
.y10a{bottom:353.008000pt;}
.ya8{bottom:353.841333pt;}
.y1c0{bottom:353.844000pt;}
.y10b{bottom:357.769333pt;}
.y66{bottom:358.604000pt;}
.ycc{bottom:358.980605pt;}
.y190{bottom:358.982667pt;}
.y212{bottom:360.797699pt;}
.y39{bottom:361.323857pt;}
.y1a{bottom:363.969333pt;}
.y125{bottom:364.046667pt;}
.y24a{bottom:364.953917pt;}
.y1dd{bottom:367.974667pt;}
.y106{bottom:369.638273pt;}
.y109{bottom:369.638825pt;}
.ya7{bottom:371.226667pt;}
.y1bf{bottom:371.229333pt;}
.y211{bottom:373.420475pt;}
.y16a{bottom:374.173233pt;}
.y107{bottom:374.400000pt;}
.ycb{bottom:375.685463pt;}
.y65{bottom:375.914667pt;}
.y38{bottom:375.988207pt;}
.y18f{bottom:376.292000pt;}
.y124{bottom:381.356000pt;}
.y249{bottom:382.264634pt;}
.y105{bottom:382.336781pt;}
.y108{bottom:382.337333pt;}
.y19{bottom:382.640000pt;}
.y210{bottom:386.120050pt;}
.ya6{bottom:388.537333pt;}
.y1be{bottom:388.540000pt;}
.y1dc{bottom:390.652000pt;}
.yca{bottom:392.315655pt;}
.y64{bottom:393.300000pt;}
.y18e{bottom:393.602667pt;}
.y248{bottom:394.963142pt;}
.y169{bottom:398.211333pt;}
.y37{bottom:398.665257pt;}
.y123{bottom:398.741333pt;}
.y18{bottom:401.310667pt;}
.y103{bottom:402.141333pt;}
.y20f{bottom:403.429700pt;}
.ya5{bottom:405.846667pt;}
.y1bd{bottom:405.849333pt;}
.y104{bottom:406.828000pt;}
.y247{bottom:407.662716pt;}
.yc9{bottom:409.020513pt;}
.y63{bottom:410.610667pt;}
.y18d{bottom:410.988000pt;}
.y168{bottom:414.161000pt;}
.yc4{bottom:415.068000pt;}
.y122{bottom:416.052000pt;}
.y20e{bottom:416.129274pt;}
.y17{bottom:419.981333pt;}
.y36{bottom:421.342307pt;}
.ya4{bottom:423.232000pt;}
.y1bc{bottom:423.234667pt;}
.y246{bottom:424.972367pt;}
.y62{bottom:427.920000pt;}
.y18c{bottom:428.298667pt;}
.yc8{bottom:428.749333pt;}
.y20d{bottom:428.753117pt;}
.y167{bottom:430.185333pt;}
.yc3{bottom:432.378667pt;}
.y121{bottom:433.362667pt;}
.y166{bottom:434.948000pt;}
.y1db{bottom:436.158667pt;}
.y245{bottom:437.596209pt;}
.ya3{bottom:440.542667pt;}
.y1bb{bottom:440.545333pt;}
.y16{bottom:442.658667pt;}
.y35{bottom:444.019357pt;}
.y61{bottom:445.306667pt;}
.yeb{bottom:445.381333pt;}
.y18b{bottom:445.608000pt;}
.y20c{bottom:446.138499pt;}
.y165{bottom:446.210667pt;}
.yc2{bottom:449.764000pt;}
.y244{bottom:450.295783pt;}
.y120{bottom:450.748000pt;}
.y164{bottom:450.897333pt;}
.y1da{bottom:453.468000pt;}
.y274{bottom:454.982658pt;}
.ya2{bottom:457.853333pt;}
.y1ba{bottom:457.856000pt;}
.y20b{bottom:458.762342pt;}
.y163{bottom:462.160000pt;}
.y60{bottom:462.616000pt;}
.yea{bottom:462.690667pt;}
.y18a{bottom:462.994667pt;}
.y34{bottom:466.696406pt;}
.y162{bottom:466.922667pt;}
.yc1{bottom:467.074667pt;}
.y243{bottom:467.605434pt;}
.y11f{bottom:468.057333pt;}
.y1d9{bottom:470.778667pt;}
.y20a{bottom:471.461916pt;}
.ya1{bottom:475.238667pt;}
.yc7{bottom:475.241333pt;}
.y161{bottom:478.188687pt;}
.y5f{bottom:479.926667pt;}
.ye9{bottom:480.076000pt;}
.y189{bottom:480.304000pt;}
.y242{bottom:480.305008pt;}
.yc0{bottom:484.384000pt;}
.y15{bottom:486.577333pt;}
.y1d8{bottom:488.164000pt;}
.y209{bottom:488.771566pt;}
.y33{bottom:489.373456pt;}
.ya0{bottom:492.548000pt;}
.y9e{bottom:492.550667pt;}
.y241{bottom:492.928850pt;}
.y160{bottom:494.214087pt;}
.y5e{bottom:497.312000pt;}
.ye8{bottom:497.386667pt;}
.y273{bottom:497.614659pt;}
.y188{bottom:497.614667pt;}
.y9f{bottom:498.444000pt;}
.y14d{bottom:500.863900pt;}
.y208{bottom:501.471141pt;}
.ybf{bottom:501.769333pt;}
.ybd{bottom:501.772000pt;}
.y32{bottom:504.037806pt;}
.y14{bottom:505.248000pt;}
.y1d7{bottom:505.474667pt;}
.ybe{bottom:507.666667pt;}
.y9d{bottom:509.861333pt;}
.y240{bottom:510.314233pt;}
.y207{bottom:514.093917pt;}
.y5d{bottom:514.622667pt;}
.ye7{bottom:514.697333pt;}
.y187{bottom:514.925333pt;}
.y31{bottom:518.703223pt;}
.ybc{bottom:519.081333pt;}
.y15f{bottom:519.158842pt;}
.y1d6{bottom:522.784000pt;}
.y23f{bottom:522.938075pt;}
.y13{bottom:523.918667pt;}
.y14c{bottom:524.826267pt;}
.y206{bottom:526.793491pt;}
.y9c{bottom:527.172000pt;}
.y15e{bottom:531.857350pt;}
.y5c{bottom:531.932000pt;}
.ye6{bottom:532.082667pt;}
.y186{bottom:532.310667pt;}
.y30{bottom:533.367573pt;}
.y23e{bottom:535.636583pt;}
.ybb{bottom:536.392000pt;}
.y272{bottom:540.323458pt;}
.y14b{bottom:540.851667pt;}
.y12{bottom:542.589333pt;}
.y205{bottom:544.103141pt;}
.y9b{bottom:544.557333pt;}
.y1d5{bottom:545.461333pt;}
.y2f{bottom:548.031923pt;}
.y23d{bottom:548.260425pt;}
.y15d{bottom:548.487542pt;}
.y5b{bottom:549.242667pt;}
.ye5{bottom:549.393333pt;}
.y185{bottom:549.620000pt;}
.y271{bottom:552.947300pt;}
.yba{bottom:553.777333pt;}
.y204{bottom:556.802716pt;}
.y14a{bottom:556.876000pt;}
.y15c{bottom:561.187116pt;}
.y11{bottom:561.260000pt;}
.y149{bottom:561.562667pt;}
.y9a{bottom:561.868000pt;}
.y2e{bottom:562.696273pt;}
.y23c{bottom:565.645808pt;}
.y5a{bottom:566.628000pt;}
.ye4{bottom:566.702667pt;}
.y184{bottom:566.930667pt;}
.y203{bottom:569.426558pt;}
.yb9{bottom:571.088000pt;}
.y148{bottom:572.825333pt;}
.y147{bottom:577.586667pt;}
.y15b{bottom:577.891974pt;}
.y23b{bottom:578.269650pt;}
.y99{bottom:579.177333pt;}
.y270{bottom:582.956525pt;}
.y10{bottom:583.937333pt;}
.y59{bottom:583.938667pt;}
.ye3{bottom:584.013333pt;}
.y183{bottom:584.316000pt;}
.y2d{bottom:584.541333pt;}
.y202{bottom:586.811941pt;}
.yb8{bottom:588.397333pt;}
.y146{bottom:588.850667pt;}
.y15a{bottom:590.515816pt;}
.y23a{bottom:590.969225pt;}
.y145{bottom:593.612000pt;}
.y26f{bottom:595.655033pt;}
.y98{bottom:596.562667pt;}
.y1d4{bottom:598.904000pt;}
.y201{bottom:599.435783pt;}
.y58{bottom:601.248000pt;}
.ye2{bottom:601.398667pt;}
.y182{bottom:601.626667pt;}
.y239{bottom:603.592000pt;}
.y144{bottom:604.878304pt;}
.y159{bottom:607.220674pt;}
.y26e{bottom:608.278875pt;}
.yb7{bottom:611.073333pt;}
.y200{bottom:612.134291pt;}
.y97{bottom:613.873333pt;}
.y1d3{bottom:616.289333pt;}
.y57{bottom:618.634667pt;}
.ye1{bottom:618.709333pt;}
.y181{bottom:618.936000pt;}
.y158{bottom:619.844516pt;}
.y143{bottom:620.826904pt;}
.y238{bottom:620.978450pt;}
.y1ff{bottom:624.758133pt;}
.y26d{bottom:625.665325pt;}
.y96{bottom:631.184000pt;}
.y237{bottom:633.602292pt;}
.y56{bottom:635.944000pt;}
.ye0{bottom:636.018667pt;}
.y157{bottom:636.550441pt;}
.y26c{bottom:638.288100pt;}
.yf{bottom:638.589333pt;}
.y1d2{bottom:638.966667pt;}
.y180{bottom:641.612000pt;}
.y1fe{bottom:642.144583pt;}
.y142{bottom:645.847391pt;}
.y236{bottom:646.300800pt;}
.y95{bottom:648.569333pt;}
.y156{bottom:649.173217pt;}
.y26b{bottom:650.987675pt;}
.y55{bottom:653.254667pt;}
.ydf{bottom:653.404000pt;}
.y1fd{bottom:654.767358pt;}
.y2c{bottom:661.796000pt;}
.y141{bottom:662.553316pt;}
.y235{bottom:663.611517pt;}
.y155{bottom:665.879141pt;}
.y94{bottom:665.880000pt;}
.y1fc{bottom:667.466933pt;}
.y54{bottom:670.640000pt;}
.y1b9{bottom:676.157634pt;}
.y234{bottom:676.310025pt;}
.y2b{bottom:677.140000pt;}
.y154{bottom:678.502983pt;}
.y140{bottom:679.183508pt;}
.y26a{bottom:680.996900pt;}
.y93{bottom:683.189333pt;}
.y1d1{bottom:684.397333pt;}
.y1fb{bottom:684.776583pt;}
.y102{bottom:686.211900pt;}
.y53{bottom:687.950667pt;}
.y233{bottom:688.933867pt;}
.ye{bottom:692.183233pt;}
.y2a{bottom:692.409333pt;}
.y269{bottom:693.620742pt;}
.y153{bottom:695.207841pt;}
.y13f{bottom:695.888366pt;}
.y1fa{bottom:697.476158pt;}
.y1b8{bottom:700.194667pt;}
.y92{bottom:700.500000pt;}
.y232{bottom:701.633442pt;}
.y1d0{bottom:701.706667pt;}
.y1b7{bottom:704.957333pt;}
.y52{bottom:705.260000pt;}
.y268{bottom:706.319250pt;}
.y29{bottom:707.754667pt;}
.y152{bottom:707.831683pt;}
.y1f9{bottom:710.100000pt;}
.y101{bottom:710.174267pt;}
.y13e{bottom:712.518558pt;}
.y1b6{bottom:716.220000pt;}
.y83{bottom:716.972971pt;}
.y91{bottom:717.885333pt;}
.yd{bottom:718.866633pt;}
.y231{bottom:718.943092pt;}
.y1b5{bottom:720.906667pt;}
.y51{bottom:722.570667pt;}
.y1f8{bottom:722.798508pt;}
.y28{bottom:723.098667pt;}
.y267{bottom:723.629967pt;}
.y1cf{bottom:724.384000pt;}
.y151{bottom:724.537608pt;}
.y100{bottom:726.199667pt;}
.y13d{bottom:729.223416pt;}
.y82{bottom:731.637321pt;}
.y230{bottom:731.642666pt;}
.yc{bottom:732.171000pt;}
.y90{bottom:735.196000pt;}
.y266{bottom:736.328475pt;}
.y50{bottom:739.956000pt;}
.y1f7{bottom:740.109225pt;}
.y1b4{bottom:741.165492pt;}
.y150{bottom:741.166733pt;}
.yff{bottom:742.224000pt;}
.y22f{bottom:744.265442pt;}
.yb{bottom:745.550033pt;}
.y13c{bottom:745.853608pt;}
.yfe{bottom:746.910667pt;}
.y265{bottom:748.952317pt;}
.y8f{bottom:752.505333pt;}
.y1f6{bottom:752.807733pt;}
.y1b3{bottom:753.864000pt;}
.y1b1{bottom:753.866150pt;}
.y14f{bottom:753.866308pt;}
.y81{bottom:754.314371pt;}
.y4f{bottom:757.266667pt;}
.yfd{bottom:758.173333pt;}
.y1b2{bottom:758.626667pt;}
.ya{bottom:758.853333pt;}
.y22e{bottom:761.651891pt;}
.y13b{bottom:762.483800pt;}
.yfc{bottom:762.936000pt;}
.y1f5{bottom:765.431575pt;}
.y264{bottom:766.263034pt;}
.y80{bottom:768.978721pt;}
.y8e{bottom:769.890667pt;}
.y1b0{bottom:770.495275pt;}
.y14e{bottom:770.496500pt;}
.y22d{bottom:774.274667pt;}
.y4e{bottom:774.576000pt;}
.y263{bottom:778.961542pt;}
.y13a{bottom:779.188658pt;}
.y1f4{bottom:782.742292pt;}
.y9{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.yfb{bottom:783.195008pt;}
.y7f{bottom:783.643071pt;}
.y22c{bottom:786.974241pt;}
.y1af{bottom:787.201200pt;}
.y8d{bottom:787.201333pt;}
.y8{bottom:788.182667pt;}
.y262{bottom:791.661116pt;}
.y1f3{bottom:795.440800pt;}
.y139{bottom:795.818850pt;}
.y4d{bottom:797.253333pt;}
.y5{bottom:797.556000pt;}
.y7e{bottom:798.307421pt;}
.y22b{bottom:799.598084pt;}
.yfa{bottom:799.825200pt;}
.y6{bottom:802.846667pt;}
.y1ae{bottom:803.830325pt;}
.y8c{bottom:804.512000pt;}
.y1f2{bottom:808.140374pt;}
.y261{bottom:808.970767pt;}
.y22a{bottom:812.296592pt;}
.y138{bottom:812.523708pt;}
.y7d{bottom:812.972838pt;}
.yf9{bottom:816.530058pt;}
.y1ad{bottom:820.536250pt;}
.y260{bottom:821.594609pt;}
.y8b{bottom:821.897333pt;}
.y1f1{bottom:825.450025pt;}
.y7c{bottom:827.637188pt;}
.y137{bottom:829.153900pt;}
.y229{bottom:829.607309pt;}
.y4{bottom:830.817867pt;}
.yf8{bottom:833.160250pt;}
.y25f{bottom:834.294183pt;}
.y1ac{bottom:837.166442pt;}
.y1f0{bottom:838.073867pt;}
.y8a{bottom:839.208000pt;}
.y7b{bottom:842.301538pt;}
.y228{bottom:842.306883pt;}
.y136{bottom:845.859825pt;}
.y25e{bottom:846.992691pt;}
.y1ab{bottom:849.864950pt;}
.yf7{bottom:849.866174pt;}
.y1ef{bottom:850.773441pt;}
.y89{bottom:856.517333pt;}
.y7a{bottom:856.965888pt;}
.y227{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y135{bottom:862.488950pt;}
.y25d{bottom:864.303408pt;}
.y1aa{bottom:866.495142pt;}
.yf6{bottom:866.495300pt;}
.y1ee{bottom:868.083092pt;}
.y79{bottom:871.630238pt;}
.y88{bottom:873.902667pt;}
.y226{bottom:876.926184pt;}
.y134{bottom:879.194875pt;}
.y1ed{bottom:880.782666pt;}
.y1a8{bottom:883.200000pt;}
.yf5{bottom:883.201224pt;}
.y78{bottom:886.294588pt;}
.y1a9{bottom:887.962667pt;}
.y225{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y87{bottom:891.213333pt;}
.y1ec{bottom:893.405442pt;}
.yf4{bottom:895.824000pt;}
.y1a3{bottom:899.829333pt;}
.y1a7{bottom:899.830825pt;}
.y1a2{bottom:899.831339pt;}
.y4c{bottom:900.510667pt;}
.y77{bottom:900.958938pt;}
.y224{bottom:902.325333pt;}
.y1a5{bottom:904.592000pt;}
.y86{bottom:908.524000pt;}
.y1eb{bottom:910.791891pt;}
.y1a4{bottom:912.527841pt;}
.y1a6{bottom:912.529333pt;}
.y1a1{bottom:912.529847pt;}
.yef{bottom:912.530005pt;}
.yf3{bottom:912.530558pt;}
.y76{bottom:915.623288pt;}
.yf0{bottom:917.290667pt;}
.y4b{bottom:919.181333pt;}
.y223{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y1ea{bottom:923.414667pt;}
.yee{bottom:925.152781pt;}
.yf1{bottom:925.153333pt;}
.y85{bottom:925.833333pt;}
.yf2{bottom:929.914667pt;}
.y75{bottom:930.288705pt;}
.y1a0{bottom:932.258667pt;}
.y19e{bottom:932.258825pt;}
.y19f{bottom:937.020000pt;}
.y1e9{bottom:941.404000pt;}
.y4a{bottom:941.858667pt;}
.y84{bottom:943.218667pt;}
.y74{bottom:944.953055pt;}
.yec{bottom:944.957333pt;}
.yed{bottom:949.720000pt;}
.y73{bottom:994.393333pt;}
.h13{height:20.192400pt;}
.h11{height:21.330000pt;}
.h4{height:24.828689pt;}
.hf{height:26.663600pt;}
.h12{height:30.292955pt;}
.hb{height:31.082945pt;}
.h10{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h9{height:39.266667pt;}
.ha{height:40.000000pt;}
.h14{height:41.333333pt;}
.h8{height:47.593839pt;}
.he{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:48.000000pt;}
.x26{left:52.081867pt;}
.x25{left:53.971600pt;}
.xf{left:63.496000pt;}
.x53{left:74.156310pt;}
.x57{left:81.940133pt;}
.x58{left:85.644000pt;}
.x1b{left:195.327969pt;}
.x24{left:196.609342pt;}
.x3e{left:204.546310pt;}
.x3d{left:212.786207pt;}
.x3f{left:214.902447pt;}
.x37{left:238.866573pt;}
.x42{left:248.013195pt;}
.x34{left:254.513333pt;}
.x35{left:263.660000pt;}
.x1{left:266.682667pt;}
.x63{left:273.184000pt;}
.x1c{left:278.325332pt;}
.x10{left:282.632000pt;}
.x64{left:295.330923pt;}
.x27{left:321.940000pt;}
.x28{left:325.644000pt;}
.x4b{left:333.581333pt;}
.x29{left:335.394278pt;}
.x33{left:336.756000pt;}
.x19{left:338.494667pt;}
.x1a{left:342.198667pt;}
.x1d{left:348.018327pt;}
.x11{left:350.210667pt;}
.xc{left:353.764000pt;}
.x59{left:354.744636pt;}
.x60{left:356.032000pt;}
.xd{left:358.677333pt;}
.x16{left:363.288000pt;}
.x52{left:364.724411pt;}
.x18{left:366.538667pt;}
.x2{left:371.073333pt;}
.x4e{left:373.038973pt;}
.x3{left:375.986667pt;}
.x2a{left:407.431778pt;}
.x5a{left:428.520781pt;}
.x38{left:434.343596pt;}
.x36{left:440.994667pt;}
.x54{left:443.186363pt;}
.x4{left:445.304000pt;}
.x5{left:457.701333pt;}
.x4c{left:463.293845pt;}
.x2b{left:470.625654pt;}
.x4d{left:473.195588pt;}
.x40{left:489.297333pt;}
.x41{left:492.925333pt;}
.x4f{left:498.140343pt;}
.x43{left:503.659066pt;}
.x2c{left:510.538667pt;}
.x1e{left:520.516000pt;}
.x6{left:529.662667pt;}
.x12{left:532.157333pt;}
.x7{left:534.576000pt;}
.x13{left:536.920000pt;}
.x50{left:543.797372pt;}
.x17{left:547.124000pt;}
.x45{left:549.315028pt;}
.x44{left:552.338991pt;}
.x1f{left:554.154667pt;}
.x20{left:565.266667pt;}
.x21{left:579.854667pt;}
.x2d{left:583.256000pt;}
.x51{left:589.453335pt;}
.x5b{left:590.816000pt;}
.x46{left:598.373615pt;}
.x2e{left:606.765333pt;}
.x5c{left:609.787872pt;}
.x2f{left:625.209333pt;}
.x5d{left:633.221333pt;}
.x47{left:639.420000pt;}
.x8{left:640.856000pt;}
.x39{left:641.990667pt;}
.x9{left:645.845333pt;}
.x5e{left:652.194667pt;}
.x61{left:653.554681pt;}
.x30{left:667.540000pt;}
.x14{left:669.354667pt;}
.x15{left:674.041333pt;}
.x3a{left:675.552000pt;}
.x55{left:677.896000pt;}
.x56{left:681.524000pt;}
.x48{left:687.042667pt;}
.x5f{left:694.525333pt;}
.x3b{left:710.173333pt;}
.x49{left:720.604000pt;}
.x22{left:726.576000pt;}
.x31{left:729.373333pt;}
.x62{left:730.279055pt;}
.x4a{left:733.228000pt;}
.x3c{left:737.537333pt;}
.xa{left:749.706667pt;}
.x32{left:752.881333pt;}
.xb{left:754.620000pt;}
.x23{left:760.214667pt;}
}




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