
    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_178e68c84e58db99a210500d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_ba0a2ff4cfc0f8711a83ae09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.066000;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_dd733c3830f7ac5d6b619f4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_7996c0742561cf13a0cf5078.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_346696862c348ee33e1bb7ec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90ae2a341d8a056e6194d8d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.086000;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_b7fcb662896f2c8389b9ba61.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.017000;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_4fec95d37720f6a4a4a2c979.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097000;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_90ae2a341d8a056e6194d8d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.086000;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_4fec95d37720f6a4a4a2c979.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.097000;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_0def275631934cf74c885cc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091000;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_ec45aa084fb2752dda1b5da6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_29bccd10157a89e99de66e2c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.109000;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_8568aa66638465dff6098444.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.066000;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_dcdf15cba7b64b770c2cc031.woff2')format("woff");}.fff{font-family:fff;line-height:1.033000;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_29bccd10157a89e99de66e2c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.109000;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_8568aa66638465dff6098444.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.066000;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_03172b1ad0d0f1a3c5d195fe.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248136,0.000000,-0.030469,0.248136,0,0);-ms-transform:matrix(0.248136,0.000000,-0.030469,0.248136,0,0);-webkit-transform:matrix(0.248136,0.000000,-0.030469,0.248136,0,0);}
.m4{transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-ms-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-webkit-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-15.984000px;}
.v1{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v5{vertical-align:18.918000px;}
.v2{vertical-align:20.979000px;}
.ls1{letter-spacing:-7.680000px;}
.ls16{letter-spacing:-4.641000px;}
.ls14{letter-spacing:-2.124839px;}
.lsb{letter-spacing:-2.109000px;}
.ls17{letter-spacing:-1.887000px;}
.ls2{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.574281px;}
.ls23{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.465000px;}
.ls8{letter-spacing:-0.371178px;}
.ls22{letter-spacing:-0.342000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000120px;}
.ls7{letter-spacing:0.013347px;}
.lsc{letter-spacing:0.013714px;}
.ls1e{letter-spacing:0.057000px;}
.ls1f{letter-spacing:0.057428px;}
.ls1c{letter-spacing:0.114000px;}
.ls20{letter-spacing:0.228000px;}
.ls25{letter-spacing:0.229712px;}
.ls13{letter-spacing:0.285000px;}
.ls1d{letter-spacing:0.456000px;}
.ls10{letter-spacing:0.513000px;}
.ls1b{letter-spacing:0.516853px;}
.lse{letter-spacing:0.570000px;}
.lsf{letter-spacing:0.574281px;}
.ls19{letter-spacing:0.627000px;}
.ls18{letter-spacing:0.631709px;}
.lsa{letter-spacing:0.671640px;}
.lsd{letter-spacing:0.684000px;}
.ls21{letter-spacing:0.741000px;}
.ls11{letter-spacing:0.969000px;}
.ls1a{letter-spacing:1.254000px;}
.ls9{letter-spacing:1.366200px;}
.ls5{letter-spacing:3.454200px;}
.ls4{letter-spacing:3.454800px;}
.ls15{letter-spacing:102.204000px;}
.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;}
}
.ws0{word-spacing:-487.512000px;}
.wsf7{word-spacing:-114.444000px;}
.ws8{word-spacing:-34.560000px;}
.ws9{word-spacing:-24.192000px;}
.ws41{word-spacing:-18.720000px;}
.ws133{word-spacing:-14.931304px;}
.ws18{word-spacing:-14.820000px;}
.wsbb{word-spacing:-13.782743px;}
.ws55{word-spacing:-13.680000px;}
.ws2b{word-spacing:-12.711000px;}
.wsb{word-spacing:-12.462000px;}
.wsa7{word-spacing:-11.606517px;}
.ws2d{word-spacing:-11.520000px;}
.ws25{word-spacing:-11.229000px;}
.ws27{word-spacing:-10.260000px;}
.ws15{word-spacing:-10.080000px;}
.ws28{word-spacing:-10.032000px;}
.ws2c{word-spacing:-9.549540px;}
.ws29{word-spacing:-7.353000px;}
.ws16{word-spacing:-7.056000px;}
.ws23{word-spacing:-6.384000px;}
.ws126{word-spacing:-6.029950px;}
.ws127{word-spacing:-5.985000px;}
.ws1e{word-spacing:-5.187000px;}
.ws44{word-spacing:-4.938816px;}
.ws11c{word-spacing:-4.421963px;}
.ws21{word-spacing:-3.591000px;}
.wsc8{word-spacing:-3.477000px;}
.ws11f{word-spacing:-3.363000px;}
.ws26{word-spacing:-2.508000px;}
.ws8b{word-spacing:-2.223000px;}
.ws6f{word-spacing:-2.088000px;}
.wsdc{word-spacing:-1.952555px;}
.wsaf{word-spacing:-1.938000px;}
.ws134{word-spacing:-1.827000px;}
.wse2{word-spacing:-1.824000px;}
.ws43{word-spacing:-1.780271px;}
.ws2a{word-spacing:-1.767000px;}
.ws60{word-spacing:-1.710000px;}
.ws20{word-spacing:-1.653000px;}
.ws11b{word-spacing:-1.607987px;}
.wsc2{word-spacing:-1.596000px;}
.ws67{word-spacing:-1.550559px;}
.ws66{word-spacing:-1.539000px;}
.ws52{word-spacing:-1.425000px;}
.wsc4{word-spacing:-1.254000px;}
.ws39{word-spacing:-1.205990px;}
.ws38{word-spacing:-1.197000px;}
.ws78{word-spacing:-1.140000px;}
.wsb9{word-spacing:-1.112291px;}
.wsb8{word-spacing:-1.104000px;}
.wsb6{word-spacing:-1.091134px;}
.wsb5{word-spacing:-1.083000px;}
.wsae{word-spacing:-1.033706px;}
.ws65{word-spacing:-1.026000px;}
.ws81{word-spacing:-0.912000px;}
.wsa9{word-spacing:-0.855000px;}
.wsa6{word-spacing:-0.768000px;}
.ws11{word-spacing:-0.697500px;}
.ws5b{word-spacing:-0.684000px;}
.ws107{word-spacing:-0.627000px;}
.ws7{word-spacing:-0.576000px;}
.wsd4{word-spacing:-0.570000px;}
.ws116{word-spacing:-0.516853px;}
.ws113{word-spacing:-0.513000px;}
.ws8e{word-spacing:-0.456000px;}
.ws4a{word-spacing:-0.342000px;}
.ws3b{word-spacing:-0.285000px;}
.wsd2{word-spacing:-0.228000px;}
.wse3{word-spacing:-0.171000px;}
.ws77{word-spacing:-0.114000px;}
.ws17{word-spacing:-0.106134px;}
.ws3f{word-spacing:-0.096000px;}
.ws5a{word-spacing:-0.057000px;}
.ws1{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws42{word-spacing:0.057000px;}
.ws10{word-spacing:0.093000px;}
.wsc1{word-spacing:0.114000px;}
.ws4{word-spacing:0.144000px;}
.ws100{word-spacing:0.171000px;}
.wse1{word-spacing:0.228000px;}
.wse0{word-spacing:0.229712px;}
.ws3e{word-spacing:0.240000px;}
.wsac{word-spacing:0.285000px;}
.wsab{word-spacing:0.287140px;}
.ws68{word-spacing:0.342000px;}
.ws19{word-spacing:0.371178px;}
.ws59{word-spacing:0.399000px;}
.ws6{word-spacing:0.432000px;}
.ws9d{word-spacing:0.456000px;}
.wsdd{word-spacing:0.459425px;}
.ws14{word-spacing:0.465000px;}
.ws95{word-spacing:0.513000px;}
.ws84{word-spacing:0.570000px;}
.wsaa{word-spacing:0.574281px;}
.ws61{word-spacing:0.627000px;}
.ws6a{word-spacing:0.684000px;}
.ws5c{word-spacing:0.741000px;}
.wsda{word-spacing:0.798000px;}
.wsdb{word-spacing:0.803993px;}
.ws49{word-spacing:0.855000px;}
.wsb2{word-spacing:0.912000px;}
.wsb3{word-spacing:0.918850px;}
.ws64{word-spacing:0.969000px;}
.ws7e{word-spacing:1.026000px;}
.ws5{word-spacing:1.056000px;}
.ws85{word-spacing:1.083000px;}
.ws4f{word-spacing:1.140000px;}
.ws4e{word-spacing:1.148562px;}
.ws40{word-spacing:1.152000px;}
.wsba{word-spacing:1.160652px;}
.ws1a{word-spacing:1.176000px;}
.ws9a{word-spacing:1.197000px;}
.ws13{word-spacing:1.209000px;}
.ws103{word-spacing:1.224000px;}
.ws104{word-spacing:1.233193px;}
.wsc{word-spacing:1.248000px;}
.wsca{word-spacing:1.254000px;}
.ws11a{word-spacing:1.263418px;}
.ws2e{word-spacing:1.296000px;}
.wsf{word-spacing:1.302000px;}
.ws4b{word-spacing:1.311000px;}
.wse{word-spacing:1.344000px;}
.ws1d{word-spacing:1.368000px;}
.ws1c{word-spacing:1.378274px;}
.ws1b{word-spacing:1.482000px;}
.ws32{word-spacing:1.493130px;}
.ws31{word-spacing:1.638000px;}
.ws130{word-spacing:1.653000px;}
.ws131{word-spacing:1.665415px;}
.ws50{word-spacing:1.710000px;}
.ws51{word-spacing:1.722843px;}
.ws83{word-spacing:1.767000px;}
.ws63{word-spacing:1.824000px;}
.wsd{word-spacing:1.872000px;}
.wsa1{word-spacing:1.881000px;}
.wsb0{word-spacing:1.895127px;}
.ws86{word-spacing:1.938000px;}
.wsff{word-spacing:1.995000px;}
.ws3a{word-spacing:2.109000px;}
.wse4{word-spacing:2.124839px;}
.wsb7{word-spacing:2.160000px;}
.wsc6{word-spacing:2.223000px;}
.ws9f{word-spacing:2.280000px;}
.wsc9{word-spacing:2.337000px;}
.wsad{word-spacing:2.394000px;}
.wse9{word-spacing:2.451000px;}
.wsea{word-spacing:2.469408px;}
.wsc0{word-spacing:2.508000px;}
.ws8f{word-spacing:2.565000px;}
.ws71{word-spacing:2.622000px;}
.wsd1{word-spacing:2.679000px;}
.wsbd{word-spacing:2.736000px;}
.wsbe{word-spacing:2.756549px;}
.ws8d{word-spacing:2.850000px;}
.ws124{word-spacing:2.871405px;}
.ws30{word-spacing:2.901628px;}
.ws6c{word-spacing:2.907000px;}
.ws129{word-spacing:2.928833px;}
.ws69{word-spacing:2.964000px;}
.ws135{word-spacing:3.021000px;}
.wsa{word-spacing:3.024000px;}
.wsb4{word-spacing:3.192000px;}
.wscf{word-spacing:3.306000px;}
.wsce{word-spacing:3.330829px;}
.ws2f{word-spacing:3.360000px;}
.ws108{word-spacing:3.363000px;}
.ws109{word-spacing:3.388258px;}
.ws70{word-spacing:3.420000px;}
.ws12c{word-spacing:3.477000px;}
.ws123{word-spacing:3.503114px;}
.wsd3{word-spacing:3.648000px;}
.ws12f{word-spacing:3.705000px;}
.wsa4{word-spacing:3.762000px;}
.wseb{word-spacing:3.819000px;}
.wsec{word-spacing:3.847682px;}
.ws33{word-spacing:3.876000px;}
.ws102{word-spacing:3.888000px;}
.wse7{word-spacing:3.933000px;}
.ws3c{word-spacing:3.990000px;}
.ws11d{word-spacing:4.134823px;}
.wsdf{word-spacing:4.161000px;}
.wsde{word-spacing:4.192251px;}
.wsc7{word-spacing:4.218000px;}
.ws4c{word-spacing:4.389000px;}
.ws4d{word-spacing:4.421963px;}
.wsb1{word-spacing:4.446000px;}
.ws34{word-spacing:4.503000px;}
.ws101{word-spacing:4.512000px;}
.ws35{word-spacing:4.536819px;}
.ws3d{word-spacing:4.674000px;}
.ws120{word-spacing:4.731000px;}
.ws74{word-spacing:4.902000px;}
.ws12d{word-spacing:5.016000px;}
.wsc3{word-spacing:5.130000px;}
.ws12{word-spacing:5.161500px;}
.wsa0{word-spacing:5.187000px;}
.ws7d{word-spacing:5.244000px;}
.ws76{word-spacing:5.301000px;}
.ws92{word-spacing:5.472000px;}
.wsa3{word-spacing:5.529000px;}
.wscb{word-spacing:5.871000px;}
.wsbc{word-spacing:5.928000px;}
.ws5d{word-spacing:6.042000px;}
.ws9c{word-spacing:6.156000px;}
.ws37{word-spacing:6.270000px;}
.ws36{word-spacing:6.317090px;}
.ws5e{word-spacing:6.327000px;}
.ws5f{word-spacing:6.374518px;}
.ws89{word-spacing:6.441000px;}
.ws56{word-spacing:6.612000px;}
.ws46{word-spacing:6.726000px;}
.ws45{word-spacing:6.776515px;}
.ws82{word-spacing:6.783000px;}
.ws93{word-spacing:6.840000px;}
.ws8a{word-spacing:7.068000px;}
.ws94{word-spacing:7.125000px;}
.ws99{word-spacing:7.353000px;}
.ws7b{word-spacing:7.410000px;}
.ws7f{word-spacing:7.467000px;}
.ws11e{word-spacing:7.581000px;}
.ws72{word-spacing:7.638000px;}
.ws3{word-spacing:7.680000px;}
.ws7a{word-spacing:7.752000px;}
.ws54{word-spacing:7.923000px;}
.ws79{word-spacing:7.980000px;}
.ws9e{word-spacing:8.037000px;}
.ws128{word-spacing:8.151000px;}
.ws53{word-spacing:8.550000px;}
.wsd0{word-spacing:8.721000px;}
.ws62{word-spacing:8.949000px;}
.ws6b{word-spacing:9.006000px;}
.ws10e{word-spacing:9.016211px;}
.ws88{word-spacing:9.234000px;}
.wsa8{word-spacing:9.291000px;}
.wse6{word-spacing:9.462000px;}
.wsd5{word-spacing:9.519000px;}
.ws8c{word-spacing:9.633000px;}
.wsa5{word-spacing:9.804000px;}
.wscc{word-spacing:10.032000px;}
.wse5{word-spacing:10.089000px;}
.wscd{word-spacing:10.107345px;}
.wsee{word-spacing:10.164773px;}
.wsc5{word-spacing:10.203000px;}
.ws110{word-spacing:10.222201px;}
.ws7c{word-spacing:10.260000px;}
.wsd6{word-spacing:10.337057px;}
.ws47{word-spacing:10.488000px;}
.ws48{word-spacing:10.566769px;}
.ws9b{word-spacing:10.602000px;}
.ws6d{word-spacing:11.115000px;}
.ws6e{word-spacing:11.198478px;}
.ws125{word-spacing:11.400000px;}
.ws75{word-spacing:11.571000px;}
.wsa2{word-spacing:11.742000px;}
.ws87{word-spacing:11.799000px;}
.ws73{word-spacing:12.255000px;}
.ws57{word-spacing:12.369000px;}
.ws105{word-spacing:12.461896px;}
.wse8{word-spacing:12.540000px;}
.wsd7{word-spacing:12.749037px;}
.wsbf{word-spacing:12.882000px;}
.wsd9{word-spacing:13.281000px;}
.wsd8{word-spacing:13.380746px;}
.ws10f{word-spacing:13.725315px;}
.ws115{word-spacing:13.965000px;}
.wsef{word-spacing:14.079000px;}
.ws112{word-spacing:14.364000px;}
.ws121{word-spacing:14.421000px;}
.ws122{word-spacing:14.529308px;}
.ws10a{word-spacing:14.701592px;}
.ws80{word-spacing:14.820000px;}
.ws97{word-spacing:16.188000px;}
.wsfe{word-spacing:17.328000px;}
.wsed{word-spacing:17.442000px;}
.ws117{word-spacing:17.572997px;}
.ws98{word-spacing:18.468000px;}
.ws10b{word-spacing:18.810000px;}
.ws132{word-spacing:19.323000px;}
.ws118{word-spacing:19.551000px;}
.ws111{word-spacing:20.064000px;}
.ws90{word-spacing:20.520000px;}
.ws91{word-spacing:20.674114px;}
.ws12b{word-spacing:21.090000px;}
.ws12a{word-spacing:21.248395px;}
.ws10c{word-spacing:23.085000px;}
.ws10d{word-spacing:23.258378px;}
.ws106{word-spacing:24.119800px;}
.ws58{word-spacing:24.567000px;}
.ws119{word-spacing:26.049000px;}
.ws12e{word-spacing:27.474000px;}
.wsf3{word-spacing:31.365000px;}
.ws96{word-spacing:34.884000px;}
.ws114{word-spacing:44.574000px;}
.ws24{word-spacing:74.328000px;}
.wsf5{word-spacing:77.724000px;}
.wsf4{word-spacing:89.964000px;}
.ws22{word-spacing:101.688000px;}
.ws1f{word-spacing:129.048000px;}
.wsf0{word-spacing:135.762000px;}
.wsf6{word-spacing:138.975000px;}
.wsf2{word-spacing:151.515900px;}
.wsf1{word-spacing:198.441000px;}
.wsfc{word-spacing:217.056000px;}
.wsf9{word-spacing:338.991900px;}
.wsfa{word-spacing:392.394000px;}
.wsfd{word-spacing:475.269000px;}
.wsf8{word-spacing:728.688000px;}
.wsfb{word-spacing:899.232000px;}
._20{margin-left:-104.085900px;}
._1e{margin-left:-102.204000px;}
._0{margin-left:-15.984000px;}
._14{margin-left:-14.325360px;}
._12{margin-left:-13.294800px;}
._21{margin-left:-12.240000px;}
._2{margin-left:-10.998000px;}
._9{margin-left:-9.151080px;}
._13{margin-left:-7.345053px;}
._11{margin-left:-6.328200px;}
._a{margin-left:-5.304480px;}
._7{margin-left:-3.709440px;}
._4{margin-left:-2.689200px;}
._3{margin-left:-1.069200px;}
._b{width:1.063200px;}
._f{width:2.109000px;}
._d{width:3.135000px;}
._8{width:4.334040px;}
._c{width:12.336840px;}
._2c{width:14.022000px;}
._30{width:20.349000px;}
._2d{width:21.489000px;}
._2a{width:22.569241px;}
._35{width:27.645000px;}
._2f{width:29.640000px;}
._2e{width:32.604000px;}
._32{width:35.568000px;}
._31{width:38.019000px;}
._2b{width:40.698000px;}
._e{width:42.463200px;}
._33{width:43.491000px;}
._34{width:46.341000px;}
._10{width:50.256000px;}
._36{width:72.384000px;}
._29{width:77.724000px;}
._16{width:89.593200px;}
._1f{width:90.705600px;}
._1a{width:94.707000px;}
._22{width:99.144000px;}
._27{width:102.204000px;}
._19{width:106.947000px;}
._18{width:119.187000px;}
._17{width:127.078200px;}
._23{width:135.711000px;}
._15{width:150.656880px;}
._25{width:169.881000px;}
._24{width:174.114000px;}
._5{width:202.104000px;}
._1{width:254.880000px;}
._26{width:343.383000px;}
._1d{width:355.623000px;}
._28{width:544.207200px;}
._1c{width:596.802000px;}
._1b{width:1115.880000px;}
._6{width:1713.636000px;}
.fc5{color:rgb(124,123,123);}
.fc3{color:transparent;}
.fc2{color:rgb(26,24,28);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(6,72,140);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:27.984000px;}
.fs10{font-size:29.400000px;}
.fs1a{font-size:33.231000px;}
.fs18{font-size:36.729000px;}
.fsf{font-size:42.000000px;}
.fse{font-size:46.500000px;}
.fs9{font-size:48.000000px;}
.fs1b{font-size:48.360489px;}
.fs1c{font-size:51.000000px;}
.fs1d{font-size:51.383024px;}
.fs8{font-size:54.000000px;}
.fs13{font-size:57.000000px;}
.fs14{font-size:57.428094px;}
.fs0{font-size:60.000000px;}
.fs17{font-size:63.000000px;}
.fsd{font-size:72.000000px;}
.fs12{font-size:74.235600px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fsc{font-size:100.800000px;}
.fs11{font-size:106.134000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:114.000000px;}
.fs15{font-size:120.000000px;}
.fs16{font-size:120.901185px;}
.fsb{font-size:144.000000px;}
.fs1{font-size:168.000000px;}
.fs4{font-size:180.000000px;}
.fs6{font-size:1536.000000px;}
.fs5{font-size:2196.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:30.089400px;}
.y5e{bottom:35.084550px;}
.yf{bottom:45.563850px;}
.y9{bottom:46.196850px;}
.y5d{bottom:47.084550px;}
.y5c{bottom:59.086050px;}
.ye{bottom:77.963850px;}
.y8{bottom:78.596850px;}
.yd{bottom:110.363850px;}
.y7{bottom:110.996850px;}
.y19d{bottom:116.923500px;}
.y12d{bottom:116.927850px;}
.yaa{bottom:116.929200px;}
.y24d{bottom:116.933400px;}
.y204{bottom:119.422800px;}
.y203{bottom:119.425050px;}
.y122{bottom:119.912250px;}
.yf0{bottom:119.943750px;}
.y8a{bottom:122.992650px;}
.y12c{bottom:130.427850px;}
.y13c{bottom:130.429200px;}
.ya9{bottom:130.433400px;}
.y243{bottom:134.358150px;}
.y244{bottom:134.362200px;}
.y201{bottom:137.409600px;}
.y202{bottom:137.422800px;}
.y121{bottom:137.910000px;}
.y18f{bottom:137.914500px;}
.yef{bottom:137.941500px;}
.y19c{bottom:138.931500px;}
.y89{bottom:140.990400px;}
.y13b{bottom:143.929200px;}
.ya8{bottom:148.181400px;}
.y242{bottom:152.355900px;}
.y19b{bottom:152.431500px;}
.y120{bottom:155.907750px;}
.y18e{bottom:155.912250px;}
.yee{bottom:155.939250px;}
.y88{bottom:158.988150px;}
.y200{bottom:159.668100px;}
.ya7{bottom:161.681400px;}
.y165{bottom:173.905500px;}
.y164{bottom:173.907750px;}
.y18d{bottom:173.910000px;}
.y11f{bottom:173.921250px;}
.yed{bottom:173.937000px;}
.y1bd{bottom:174.559800px;}
.y241{bottom:174.614400px;}
.y24c{bottom:175.181400px;}
.y87{bottom:176.988150px;}
.yc{bottom:178.582500px;}
.y1fe{bottom:181.915800px;}
.y1ff{bottom:181.926600px;}
.y163{bottom:191.905500px;}
.y18c{bottom:191.907750px;}
.y11e{bottom:191.919000px;}
.yec{bottom:191.934750px;}
.y240{bottom:192.612150px;}
.y1bc{bottom:193.480800px;}
.y86{bottom:194.988150px;}
.ya{bottom:196.209000px;}
.y1fd{bottom:199.913550px;}
.y162{bottom:209.905500px;}
.y161{bottom:209.910000px;}
.y18b{bottom:209.912250px;}
.y11d{bottom:209.916750px;}
.yeb{bottom:209.932500px;}
.y23f{bottom:210.609900px;}
.y85{bottom:212.993700px;}
.y1bb{bottom:213.247950px;}
.y1fc{bottom:222.172050px;}
.y160{bottom:227.907750px;}
.y18a{bottom:227.910000px;}
.y11c{bottom:227.914500px;}
.yea{bottom:227.930250px;}
.y84{bottom:230.991450px;}
.y23e{bottom:232.868400px;}
.y1ba{bottom:233.015250px;}
.y34{bottom:233.858250px;}
.y1fb{bottom:244.430550px;}
.y1fa{bottom:244.432800px;}
.y15f{bottom:245.905500px;}
.y11b{bottom:245.912250px;}
.y15e{bottom:245.916750px;}
.ye9{bottom:245.928000px;}
.y83{bottom:248.989200px;}
.y23d{bottom:250.866150px;}
.y23c{bottom:250.868400px;}
.y1b9{bottom:252.782400px;}
.y5a{bottom:259.562025px;}
.y1f8{bottom:262.424250px;}
.y1f9{bottom:262.430550px;}
.y189{bottom:263.905500px;}
.y11a{bottom:263.910000px;}
.y15d{bottom:263.914500px;}
.ye8{bottom:263.925750px;}
.y23a{bottom:268.859850px;}
.y23b{bottom:268.866150px;}
.y1b8{bottom:272.549700px;}
.y59{bottom:276.057900px;}
.y1f7{bottom:280.422000px;}
.y119{bottom:281.907750px;}
.y15c{bottom:281.912250px;}
.y188{bottom:281.916750px;}
.ye7{bottom:281.923500px;}
.y239{bottom:286.857600px;}
.y82{bottom:288.247950px;}
.y3d{bottom:289.031100px;}
.y1b7{bottom:292.316850px;}
.y58{bottom:292.557900px;}
.y1f6{bottom:298.419750px;}
.y118{bottom:299.905500px;}
.y15b{bottom:299.910000px;}
.y187{bottom:299.914500px;}
.ye6{bottom:299.921250px;}
.y238{bottom:304.855350px;}
.y81{bottom:306.247950px;}
.y3c{bottom:307.031100px;}
.y1b6{bottom:312.084150px;}
.y15a{bottom:317.907750px;}
.y186{bottom:317.912250px;}
.ye5{bottom:317.919000px;}
.y1f5{bottom:320.678250px;}
.y80{bottom:324.249150px;}
.y3b{bottom:325.031100px;}
.y237{bottom:327.113850px;}
.y1b5{bottom:331.851300px;}
.y117{bottom:335.905500px;}
.y185{bottom:335.910000px;}
.ye4{bottom:335.916750px;}
.y3e{bottom:342.376200px;}
.y1f4{bottom:342.936750px;}
.y3a{bottom:343.031100px;}
.y236{bottom:345.111600px;}
.y1b4{bottom:351.618600px;}
.y57{bottom:352.582275px;}
.y184{bottom:353.907750px;}
.ya6{bottom:353.914500px;}
.y1f2{bottom:360.923700px;}
.y1f3{bottom:360.934500px;}
.y7f{bottom:363.507900px;}
.y234{bottom:367.363800px;}
.y235{bottom:367.370100px;}
.y56{bottom:369.078150px;}
.y1b3{bottom:371.385750px;}
.y159{bottom:371.905500px;}
.ya5{bottom:371.912250px;}
.y183{bottom:371.930250px;}
.y39{bottom:375.431100px;}
.y1f1{bottom:378.921450px;}
.y7e{bottom:381.507900px;}
.y233{bottom:385.361550px;}
.ya4{bottom:389.910000px;}
.y182{bottom:389.928000px;}
.y116{bottom:389.934750px;}
.y1b2{bottom:391.153050px;}
.y7d{bottom:399.508950px;}
.y1f0{bottom:401.179950px;}
.y232{bottom:403.359300px;}
.ya3{bottom:407.907750px;}
.y181{bottom:407.925750px;}
.y115{bottom:407.932500px;}
.y1b1{bottom:410.920200px;}
.y32{bottom:415.502100px;}
.y1ef{bottom:423.438450px;}
.y1ee{bottom:423.440700px;}
.y231{bottom:425.617800px;}
.ya2{bottom:425.905500px;}
.ya1{bottom:425.907750px;}
.y158{bottom:425.921250px;}
.y180{bottom:425.923500px;}
.y114{bottom:425.930250px;}
.y31{bottom:429.002100px;}
.y1b0{bottom:430.687500px;}
.y7c{bottom:438.767700px;}
.y1ec{bottom:441.434400px;}
.y1ed{bottom:441.438450px;}
.y30{bottom:442.502100px;}
.ya0{bottom:443.905500px;}
.y9f{bottom:443.907750px;}
.y157{bottom:443.919000px;}
.y113{bottom:443.928000px;}
.y230{bottom:447.876300px;}
.y1af{bottom:450.454650px;}
.y2f{bottom:456.002100px;}
.y7b{bottom:456.767700px;}
.y49{bottom:458.076750px;}
.y1eb{bottom:459.432150px;}
.y9e{bottom:461.905500px;}
.y9d{bottom:461.907750px;}
.y156{bottom:461.916750px;}
.y17f{bottom:461.919000px;}
.y112{bottom:461.925750px;}
.y22f{bottom:465.874050px;}
.y22e{bottom:465.878550px;}
.y1ae{bottom:469.371150px;}
.y2e{bottom:469.502100px;}
.y48{bottom:472.476750px;}
.y7a{bottom:474.768750px;}
.y1ea{bottom:477.429900px;}
.y9c{bottom:479.905500px;}
.y155{bottom:479.914500px;}
.y17e{bottom:479.916750px;}
.y111{bottom:479.923500px;}
.y55{bottom:482.793900px;}
.y2d{bottom:483.002100px;}
.y22d{bottom:483.876300px;}
.y47{bottom:486.876750px;}
.y1ac{bottom:487.437900px;}
.y154{bottom:497.912250px;}
.y17d{bottom:497.914500px;}
.y110{bottom:497.921250px;}
.y1e9{bottom:499.688400px;}
.y22b{bottom:501.867750px;}
.y22c{bottom:501.874050px;}
.y1ad{bottom:505.504650px;}
.y46{bottom:505.524750px;}
.y79{bottom:514.027500px;}
.y54{bottom:515.797275px;}
.y9b{bottom:515.905500px;}
.ye3{bottom:515.907750px;}
.y153{bottom:515.910000px;}
.y17c{bottom:515.912250px;}
.y10f{bottom:515.919000px;}
.y1e8{bottom:517.686150px;}
.y2c{bottom:518.090100px;}
.y22a{bottom:519.865500px;}
.y45{bottom:524.172750px;}
.y2b{bottom:531.590100px;}
.y78{bottom:532.027500px;}
.y53{bottom:532.293150px;}
.ye2{bottom:533.905500px;}
.ye1{bottom:533.907750px;}
.y17b{bottom:533.910000px;}
.y10e{bottom:533.916750px;}
.y1e7{bottom:535.683900px;}
.y229{bottom:537.863250px;}
.y44{bottom:538.572750px;}
.y2a{bottom:545.090100px;}
.y52{bottom:548.789025px;}
.y77{bottom:550.030950px;}
.ye0{bottom:551.905500px;}
.y17a{bottom:551.907750px;}
.y10d{bottom:551.914500px;}
.ydf{bottom:551.928000px;}
.y43{bottom:557.220750px;}
.y1e6{bottom:557.942400px;}
.y19a{bottom:558.583500px;}
.y228{bottom:560.121750px;}
.y51{bottom:565.284900px;}
.y12b{bottom:565.511850px;}
.y76{bottom:568.028700px;}
.y152{bottom:569.905500px;}
.y179{bottom:569.910000px;}
.y10c{bottom:569.912250px;}
.yde{bottom:569.925750px;}
.y151{bottom:569.950500px;}
.y42{bottom:571.620750px;}
.y1e5{bottom:575.933850px;}
.y29{bottom:580.178100px;}
.y199{bottom:580.591500px;}
.y50{bottom:581.780775px;}
.y227{bottom:582.380250px;}
.y24b{bottom:587.905500px;}
.y178{bottom:587.907750px;}
.y10b{bottom:587.910000px;}
.ydd{bottom:587.923500px;}
.y150{bottom:587.948250px;}
.y41{bottom:590.268750px;}
.y28{bottom:593.678100px;}
.y1e4{bottom:593.931600px;}
.y198{bottom:594.091500px;}
.y4f{bottom:598.276650px;}
.y226{bottom:600.378000px;}
.y225{bottom:600.380250px;}
.y40{bottom:604.668750px;}
.y9a{bottom:605.905500px;}
.y10a{bottom:605.907750px;}
.ydc{bottom:605.921250px;}
.y177{bottom:605.928000px;}
.y14f{bottom:605.946000px;}
.y27{bottom:607.178100px;}
.y75{bottom:607.287450px;}
.y4e{bottom:614.776650px;}
.y1e3{bottom:616.190100px;}
.y223{bottom:618.371700px;}
.y224{bottom:618.378000px;}
.y1ab{bottom:620.473650px;}
.y3f{bottom:623.320650px;}
.y99{bottom:623.905500px;}
.y109{bottom:623.907750px;}
.ydb{bottom:623.919000px;}
.y176{bottom:623.925750px;}
.y14e{bottom:623.943750px;}
.y74{bottom:625.287450px;}
.y6{bottom:628.600800px;}
.y222{bottom:636.369450px;}
.y1e2{bottom:638.448600px;}
.y98{bottom:641.905500px;}
.y24a{bottom:641.907750px;}
.yda{bottom:641.916750px;}
.y175{bottom:641.923500px;}
.y14d{bottom:641.941500px;}
.y108{bottom:641.961750px;}
.y26{bottom:642.266100px;}
.y73{bottom:643.290750px;}
.y1aa{bottom:647.044650px;}
.y221{bottom:654.367200px;}
.y25{bottom:655.766100px;}
.y1e0{bottom:656.437800px;}
.y1e1{bottom:656.446350px;}
.y249{bottom:659.905500px;}
.y248{bottom:659.907750px;}
.yd9{bottom:659.914500px;}
.y174{bottom:659.921250px;}
.y14c{bottom:659.939250px;}
.y107{bottom:659.959500px;}
.y72{bottom:661.288500px;}
.y24{bottom:669.266100px;}
.y1a9{bottom:673.615050px;}
.y220{bottom:676.625700px;}
.y247{bottom:677.905500px;}
.yd8{bottom:677.912250px;}
.y173{bottom:677.919000px;}
.y14b{bottom:677.937000px;}
.y106{bottom:677.957250px;}
.y1df{bottom:678.696300px;}
.yd7{bottom:695.910000px;}
.y14a{bottom:695.934750px;}
.y105{bottom:695.955000px;}
.y21f{bottom:698.884200px;}
.y1a8{bottom:700.185450px;}
.y71{bottom:700.547250px;}
.y1de{bottom:700.954800px;}
.y97{bottom:703.211100px;}
.y23{bottom:704.354100px;}
.y5{bottom:708.778800px;}
.yd6{bottom:713.907750px;}
.y172{bottom:713.914500px;}
.y149{bottom:713.932500px;}
.y104{bottom:713.952750px;}
.y21e{bottom:716.881950px;}
.y21d{bottom:716.886450px;}
.y22{bottom:717.854100px;}
.y70{bottom:718.547250px;}
.y1dd{bottom:718.952550px;}
.y96{bottom:719.711100px;}
.y1a7{bottom:726.755700px;}
.y21{bottom:731.354100px;}
.yd5{bottom:731.905500px;}
.yd4{bottom:731.912250px;}
.y148{bottom:731.930250px;}
.y103{bottom:731.950500px;}
.y21c{bottom:734.884200px;}
.y95{bottom:736.217100px;}
.y6f{bottom:736.550550px;}
.y1db{bottom:736.937250px;}
.y1dc{bottom:736.950300px;}
.yd3{bottom:749.910000px;}
.yc0{bottom:749.914500px;}
.y147{bottom:749.928000px;}
.y102{bottom:749.948250px;}
.y94{bottom:752.717100px;}
.y21a{bottom:752.877900px;}
.y21b{bottom:752.881950px;}
.y1a6{bottom:753.326250px;}
.y6e{bottom:754.548300px;}
.y1da{bottom:759.195750px;}
.y20{bottom:766.442100px;}
.yd2{bottom:767.907750px;}
.ybf{bottom:767.912250px;}
.y146{bottom:767.925750px;}
.y101{bottom:767.946000px;}
.y219{bottom:770.875650px;}
.y1a5{bottom:779.896500px;}
.y1f{bottom:779.942100px;}
.y1d9{bottom:781.454250px;}
.y1d8{bottom:781.458750px;}
.yd1{bottom:785.905500px;}
.ybe{bottom:785.910000px;}
.y145{bottom:785.923500px;}
.y171{bottom:785.925750px;}
.y100{bottom:785.943750px;}
.y218{bottom:788.873400px;}
.y4{bottom:788.956800px;}
.y1e{bottom:793.442100px;}
.y6d{bottom:793.807050px;}
.y1d7{bottom:799.456500px;}
.ybd{bottom:803.907750px;}
.y144{bottom:803.921250px;}
.y170{bottom:803.923500px;}
.yff{bottom:803.941500px;}
.y246{bottom:805.216500px;}
.y93{bottom:805.216950px;}
.y1a4{bottom:806.466900px;}
.y217{bottom:811.131900px;}
.y6c{bottom:811.807050px;}
.y1d6{bottom:817.454250px;}
.y1d5{bottom:817.456500px;}
.ybc{bottom:821.905500px;}
.yd0{bottom:821.912250px;}
.y143{bottom:821.919000px;}
.y16f{bottom:821.921250px;}
.yfe{bottom:821.939250px;}
.y1d{bottom:828.530100px;}
.y216{bottom:829.129650px;}
.y6b{bottom:829.808100px;}
.y38{bottom:830.196900px;}
.y1a3{bottom:833.037300px;}
.y1d3{bottom:835.449900px;}
.y1d4{bottom:835.454250px;}
.ybb{bottom:839.905500px;}
.yba{bottom:839.907750px;}
.ycf{bottom:839.910000px;}
.y142{bottom:839.916750px;}
.y16e{bottom:839.919000px;}
.yfd{bottom:839.937000px;}
.y245{bottom:841.216500px;}
.y92{bottom:841.216950px;}
.y1c{bottom:842.030100px;}
.y215{bottom:851.388150px;}
.y1d2{bottom:853.447650px;}
.y1b{bottom:855.530100px;}
.yb9{bottom:857.905500px;}
.yb8{bottom:857.907750px;}
.y141{bottom:857.914500px;}
.y16d{bottom:857.916750px;}
.yfc{bottom:857.934750px;}
.y1a2{bottom:859.607700px;}
.y37{bottom:866.196900px;}
.y6a{bottom:869.066850px;}
.y3{bottom:869.134800px;}
.y213{bottom:869.379450px;}
.y214{bottom:869.385900px;}
.y1d0{bottom:875.701950px;}
.y1d1{bottom:875.706150px;}
.yb7{bottom:875.905500px;}
.y140{bottom:875.912250px;}
.yfb{bottom:875.932500px;}
.yce{bottom:875.937000px;}
.y1a1{bottom:886.177950px;}
.y69{bottom:887.066850px;}
.y212{bottom:887.377200px;}
.y1a{bottom:890.618100px;}
.y1cf{bottom:893.699700px;}
.y13f{bottom:893.910000px;}
.y16c{bottom:893.912250px;}
.yfa{bottom:893.930250px;}
.ycd{bottom:893.934750px;}
.y36{bottom:902.196900px;}
.y19{bottom:904.118100px;}
.y68{bottom:905.070300px;}
.y211{bottom:905.374950px;}
.y1a0{bottom:908.496150px;}
.y4d{bottom:911.776650px;}
.yb6{bottom:911.905500px;}
.y13a{bottom:911.907750px;}
.y135{bottom:911.910000px;}
.yf9{bottom:911.928000px;}
.ycc{bottom:911.932500px;}
.y91{bottom:913.216500px;}
.y1cd{bottom:915.949650px;}
.y1ce{bottom:915.958200px;}
.y18{bottom:917.618100px;}
.y67{bottom:923.068050px;}
.y19e{bottom:926.562900px;}
.y210{bottom:927.633450px;}
.y4c{bottom:928.276650px;}
.y139{bottom:929.905500px;}
.y134{bottom:929.907750px;}
.y138{bottom:929.910000px;}
.yf8{bottom:929.925750px;}
.ycb{bottom:929.930250px;}
.y1cc{bottom:933.947400px;}
.y35{bottom:938.196900px;}
.y19f{bottom:944.629650px;}
.y20f{bottom:945.631200px;}
.y133{bottom:947.905500px;}
.y137{bottom:947.907750px;}
.yf7{bottom:947.923500px;}
.yca{bottom:947.928000px;}
.y90{bottom:949.216500px;}
.y2{bottom:949.312800px;}
.y17{bottom:952.706100px;}
.y1cb{bottom:956.205900px;}
.y66{bottom:962.326800px;}
.y136{bottom:965.905500px;}
.y132{bottom:965.907750px;}
.y16b{bottom:965.910000px;}
.yb5{bottom:965.914500px;}
.yf6{bottom:965.921250px;}
.yc9{bottom:965.925750px;}
.y16{bottom:966.206100px;}
.y20e{bottom:967.889700px;}
.y20d{bottom:967.894200px;}
.y4b{bottom:977.776650px;}
.y1ca{bottom:978.464400px;}
.y15{bottom:979.706100px;}
.y65{bottom:980.329050px;}
.y131{bottom:983.905500px;}
.y130{bottom:983.907750px;}
.yb4{bottom:983.912250px;}
.yf5{bottom:983.919000px;}
.yc8{bottom:983.923500px;}
.y8f{bottom:985.216500px;}
.y20c{bottom:985.891950px;}
.y4a{bottom:994.276650px;}
.y1c9{bottom:996.462150px;}
.y1c8{bottom:996.466650px;}
.y64{bottom:998.326800px;}
.y12f{bottom:1001.905500px;}
.y16a{bottom:1001.907750px;}
.yb3{bottom:1001.910000px;}
.yf4{bottom:1001.916750px;}
.yc7{bottom:1001.921250px;}
.y197{bottom:1001.931000px;}
.y12a{bottom:1001.935500px;}
.y20a{bottom:1003.878900px;}
.y20b{bottom:1003.889700px;}
.y1c7{bottom:1014.464400px;}
.y14{bottom:1014.794100px;}
.y63{bottom:1016.329050px;}
.y12e{bottom:1019.905500px;}
.yb2{bottom:1019.907750px;}
.y13e{bottom:1019.910000px;}
.yf3{bottom:1019.914500px;}
.yc6{bottom:1019.919000px;}
.y196{bottom:1019.928750px;}
.y129{bottom:1019.933250px;}
.y209{bottom:1026.137400px;}
.y13{bottom:1028.294100px;}
.y1c6{bottom:1032.462150px;}
.y1c5{bottom:1032.464400px;}
.y62{bottom:1034.326800px;}
.yb1{bottom:1037.905500px;}
.y13d{bottom:1037.907750px;}
.yf2{bottom:1037.912250px;}
.yc5{bottom:1037.916750px;}
.y195{bottom:1037.926500px;}
.y128{bottom:1037.931000px;}
.y12{bottom:1041.794100px;}
.y208{bottom:1048.395900px;}
.y1c3{bottom:1050.451350px;}
.y1c4{bottom:1050.462150px;}
.y11{bottom:1055.294100px;}
.yb0{bottom:1055.905500px;}
.yaf{bottom:1055.907750px;}
.yf1{bottom:1055.910000px;}
.yc4{bottom:1055.914500px;}
.y194{bottom:1055.924250px;}
.y127{bottom:1055.928750px;}
.y206{bottom:1066.387200px;}
.y207{bottom:1066.393650px;}
.y1c2{bottom:1072.709850px;}
.yae{bottom:1073.905500px;}
.yad{bottom:1073.907750px;}
.y169{bottom:1073.910000px;}
.yc3{bottom:1073.912250px;}
.y193{bottom:1073.922000px;}
.y126{bottom:1073.926500px;}
.y205{bottom:1088.645700px;}
.y10{bottom:1090.384650px;}
.yac{bottom:1091.905500px;}
.y168{bottom:1091.907750px;}
.yc2{bottom:1091.910000px;}
.y192{bottom:1091.919750px;}
.y125{bottom:1091.924250px;}
.y1c1{bottom:1094.968350px;}
.y8e{bottom:1095.280500px;}
.y8d{bottom:1108.780500px;}
.y167{bottom:1109.905500px;}
.yc1{bottom:1109.907750px;}
.y191{bottom:1109.917500px;}
.y124{bottom:1109.922000px;}
.y61{bottom:1112.846400px;}
.y1bf{bottom:1112.959500px;}
.y1c0{bottom:1112.966100px;}
.y8c{bottom:1122.280500px;}
.yab{bottom:1127.905500px;}
.y166{bottom:1127.914500px;}
.y190{bottom:1127.915250px;}
.y123{bottom:1127.919750px;}
.y1be{bottom:1135.218000px;}
.y8b{bottom:1135.780500px;}
.y33{bottom:1169.477250px;}
.y5b{bottom:1183.925100px;}
.y60{bottom:1184.487600px;}
.yb{bottom:1184.666850px;}
.y1{bottom:1203.743550px;}
.hb{height:35.664000px;}
.h18{height:36.498000px;}
.h19{height:36.504000px;}
.h1b{height:36.540000px;}
.h20{height:39.462000px;}
.h15{height:40.455000px;}
.h16{height:40.687500px;}
.h17{height:41.712000px;}
.h14{height:41.760000px;}
.h12{height:42.000000px;}
.h28{height:42.025265px;}
.hc{height:43.872000px;}
.h29{height:44.319000px;}
.h2a{height:44.651848px;}
.ha{height:45.072000px;}
.h22{height:46.926000px;}
.h21{height:47.250000px;}
.h1f{height:49.533000px;}
.h9{height:49.572000px;}
.h1d{height:49.875000px;}
.h1e{height:49.905014px;}
.h27{height:50.249582px;}
.h11{height:52.200000px;}
.h2{height:54.840000px;}
.h25{height:55.125000px;}
.h26{height:55.149000px;}
.h13{height:63.000000px;}
.h10{height:73.080000px;}
.hd{height:76.776000px;}
.h5{height:82.260000px;}
.h8{height:86.070000px;}
.h2b{height:91.440000px;}
.he{height:93.960000px;}
.h1a{height:97.006476px;}
.h4{height:98.712000px;}
.h24{height:105.063130px;}
.h23{height:107.160000px;}
.h1c{height:126.000000px;}
.hf{height:126.288000px;}
.h3{height:157.752000px;}
.h6{height:164.520000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h7{height:2007.144000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-873.394200px;}
.xc{left:-854.260500px;}
.x5{left:-46.631250px;}
.x1{left:-42.698250px;}
.x3{left:-39.878250px;}
.x2{left:-38.702250px;}
.x6{left:-37.559250px;}
.x7{left:-35.372250px;}
.x4{left:-34.040250px;}
.x8{left:-20.466450px;}
.x0{left:0.000000px;}
.xa{left:5.191200px;}
.x9{left:38.653050px;}
.x18{left:63.779550px;}
.x3b{left:70.021500px;}
.x90{left:79.975950px;}
.x3d{left:85.039350px;}
.xa2{left:86.806950px;}
.x3c{left:89.450100px;}
.x9c{left:96.527700px;}
.x3a{left:97.795200px;}
.x98{left:102.837900px;}
.x24{left:106.299150px;}
.xc4{left:108.480300px;}
.x5e{left:111.011550px;}
.xc5{left:112.260300px;}
.x99{left:118.394850px;}
.x30{left:127.559100px;}
.x91{left:129.691950px;}
.xc7{left:133.080300px;}
.xa5{left:137.462850px;}
.xaa{left:138.604200px;}
.x42{left:144.520350px;}
.xa6{left:145.611150px;}
.xa7{left:147.029100px;}
.xe{left:148.818900px;}
.x6a{left:153.534900px;}
.xf{left:158.953350px;}
.x4b{left:162.042600px;}
.x26{left:163.768050px;}
.xbe{left:166.543500px;}
.x10{left:167.571150px;}
.x11{left:169.204650px;}
.x5c{left:172.061400px;}
.x27{left:174.448050px;}
.x2f{left:175.546050px;}
.x15{left:178.802250px;}
.x16{left:182.282250px;}
.x2e{left:186.516750px;}
.x6b{left:188.454450px;}
.x78{left:189.704700px;}
.x6c{left:191.876400px;}
.x92{left:195.692250px;}
.x2d{left:198.530400px;}
.xa1{left:203.404800px;}
.xbf{left:207.035550px;}
.x93{left:209.871300px;}
.x35{left:215.810700px;}
.x13{left:217.061850px;}
.x9d{left:223.129800px;}
.xa3{left:229.537500px;}
.x28{left:233.548050px;}
.x68{left:239.828550px;}
.x43{left:243.471600px;}
.xb{left:246.149100px;}
.x25{left:247.201050px;}
.x95{left:248.704500px;}
.xa4{left:252.565050px;}
.x79{left:259.300200px;}
.xc6{left:260.460300px;}
.x69{left:262.240800px;}
.x94{left:264.200550px;}
.xc3{left:265.274850px;}
.xad{left:269.461050px;}
.x19{left:272.125950px;}
.x5a{left:275.164050px;}
.x29{left:282.293790px;}
.xc1{left:285.181800px;}
.x96{left:290.171250px;}
.x9a{left:298.161900px;}
.x5b{left:307.218750px;}
.x66{left:310.986450px;}
.x6d{left:313.588800px;}
.x7a{left:315.497700px;}
.xa0{left:319.877100px;}
.x36{left:325.032000px;}
.x9e{left:331.446750px;}
.xac{left:332.816250px;}
.xa8{left:335.876850px;}
.x9f{left:345.814350px;}
.x12{left:347.812350px;}
.x67{left:351.334800px;}
.x17{left:354.212250px;}
.x9b{left:356.464500px;}
.xc0{left:358.298550px;}
.xbd{left:360.232500px;}
.x82{left:365.934450px;}
.xc2{left:373.611150px;}
.x6e{left:382.375950px;}
.x14{left:391.862250px;}
.x1a{left:395.432325px;}
.x97{left:397.371300px;}
.xab{left:399.230700px;}
.x7b{left:407.211450px;}
.x23{left:415.696800px;}
.x83{left:430.973400px;}
.x5d{left:442.204650px;}
.x7c{left:443.335350px;}
.x8b{left:445.895250px;}
.x6f{left:453.173100px;}
.x47{left:457.509450px;}
.x86{left:463.464600px;}
.xae{left:469.564350px;}
.x4f{left:484.724400px;}
.x70{left:490.960650px;}
.x71{left:494.382600px;}
.x4c{left:496.759500px;}
.x8c{left:501.148350px;}
.x1e{left:504.595800px;}
.x50{left:505.985400px;}
.x48{left:509.822700px;}
.x3e{left:513.208350px;}
.x7d{left:514.719000px;}
.x1b{left:518.738700px;}
.x22{left:520.935000px;}
.xa9{left:525.939600px;}
.xb1{left:527.124600px;}
.x49{left:528.952650px;}
.xb7{left:531.164400px;}
.x63{left:541.909350px;}
.xb0{left:546.213900px;}
.x72{left:547.627950px;}
.x64{left:554.959950px;}
.x7e{left:561.194400px;}
.x3f{left:562.448700px;}
.x7f{left:563.800800px;}
.xb2{left:566.439900px;}
.x84{left:567.688800px;}
.xb6{left:575.338350px;}
.xbb{left:583.020750px;}
.x40{left:588.169500px;}
.x31{left:589.666950px;}
.x44{left:593.564550px;}
.x57{left:601.428000px;}
.x65{left:605.036700px;}
.xaf{left:608.309850px;}
.x4d{left:610.567500px;}
.x8e{left:613.088700px;}
.x73{left:615.446850px;}
.x1f{left:620.104530px;}
.x4a{left:621.334950px;}
.x87{left:625.834050px;}
.x85{left:629.549850px;}
.x8d{left:630.744300px;}
.x1c{left:642.045075px;}
.x80{left:650.455350px;}
.x2a{left:652.411350px;}
.x37{left:654.661800px;}
.x74{left:659.764200px;}
.x51{left:661.475850px;}
.x59{left:662.777550px;}
.x2c{left:664.357350px;}
.x20{left:666.018480px;}
.xb9{left:671.515200px;}
.x58{left:674.160600px;}
.x33{left:675.895200px;}
.x2b{left:677.914050px;}
.xbc{left:682.228500px;}
.x4e{left:684.111450px;}
.x53{left:685.395150px;}
.xb3{left:687.172950px;}
.x8a{left:689.143800px;}
.x41{left:690.406350px;}
.x52{left:693.627300px;}
.x75{left:696.232500px;}
.x5f{left:700.365000px;}
.x45{left:704.288700px;}
.x8f{left:707.401200px;}
.x88{left:710.191200px;}
.x60{left:712.614450px;}
.x55{left:715.563750px;}
.xba{left:717.552000px;}
.x81{left:722.043150px;}
.x32{left:727.430700px;}
.x61{left:730.149600px;}
.x89{left:733.218600px;}
.xc8{left:735.393300px;}
.x54{left:740.584650px;}
.x38{left:749.731650px;}
.x56{left:757.030500px;}
.x62{left:765.527700px;}
.xb8{left:769.106250px;}
.x34{left:773.944350px;}
.x46{left:780.028950px;}
.xb5{left:783.719550px;}
.xb4{left:786.614100px;}
.x76{left:791.346450px;}
.x1d{left:811.372050px;}
.x39{left:822.548850px;}
.x21{left:825.040800px;}
.x77{left:829.133850px;}
@media print{
.v4{vertical-align:-14.208000pt;}
.v1{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v5{vertical-align:16.816000pt;}
.v2{vertical-align:18.648000pt;}
.ls1{letter-spacing:-6.826667pt;}
.ls16{letter-spacing:-4.125333pt;}
.ls14{letter-spacing:-1.888746pt;}
.lsb{letter-spacing:-1.874667pt;}
.ls17{letter-spacing:-1.677333pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.510472pt;}
.ls23{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.413333pt;}
.ls8{letter-spacing:-0.329936pt;}
.ls22{letter-spacing:-0.304000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000107pt;}
.ls7{letter-spacing:0.011864pt;}
.lsc{letter-spacing:0.012190pt;}
.ls1e{letter-spacing:0.050667pt;}
.ls1f{letter-spacing:0.051047pt;}
.ls1c{letter-spacing:0.101333pt;}
.ls20{letter-spacing:0.202667pt;}
.ls25{letter-spacing:0.204189pt;}
.ls13{letter-spacing:0.253333pt;}
.ls1d{letter-spacing:0.405333pt;}
.ls10{letter-spacing:0.456000pt;}
.ls1b{letter-spacing:0.459425pt;}
.lse{letter-spacing:0.506667pt;}
.lsf{letter-spacing:0.510472pt;}
.ls19{letter-spacing:0.557333pt;}
.ls18{letter-spacing:0.561519pt;}
.lsa{letter-spacing:0.597013pt;}
.lsd{letter-spacing:0.608000pt;}
.ls21{letter-spacing:0.658667pt;}
.ls11{letter-spacing:0.861333pt;}
.ls1a{letter-spacing:1.114667pt;}
.ls9{letter-spacing:1.214400pt;}
.ls5{letter-spacing:3.070400pt;}
.ls4{letter-spacing:3.070933pt;}
.ls15{letter-spacing:90.848000pt;}
.ws0{word-spacing:-433.344000pt;}
.wsf7{word-spacing:-101.728000pt;}
.ws8{word-spacing:-30.720000pt;}
.ws9{word-spacing:-21.504000pt;}
.ws41{word-spacing:-16.640000pt;}
.ws133{word-spacing:-13.272271pt;}
.ws18{word-spacing:-13.173333pt;}
.wsbb{word-spacing:-12.251327pt;}
.ws55{word-spacing:-12.160000pt;}
.ws2b{word-spacing:-11.298667pt;}
.wsb{word-spacing:-11.077333pt;}
.wsa7{word-spacing:-10.316904pt;}
.ws2d{word-spacing:-10.240000pt;}
.ws25{word-spacing:-9.981333pt;}
.ws27{word-spacing:-9.120000pt;}
.ws15{word-spacing:-8.960000pt;}
.ws28{word-spacing:-8.917333pt;}
.ws2c{word-spacing:-8.488480pt;}
.ws29{word-spacing:-6.536000pt;}
.ws16{word-spacing:-6.272000pt;}
.ws23{word-spacing:-5.674667pt;}
.ws126{word-spacing:-5.359955pt;}
.ws127{word-spacing:-5.320000pt;}
.ws1e{word-spacing:-4.610667pt;}
.ws44{word-spacing:-4.390059pt;}
.ws11c{word-spacing:-3.930634pt;}
.ws21{word-spacing:-3.192000pt;}
.wsc8{word-spacing:-3.090667pt;}
.ws11f{word-spacing:-2.989333pt;}
.ws26{word-spacing:-2.229333pt;}
.ws8b{word-spacing:-1.976000pt;}
.ws6f{word-spacing:-1.856000pt;}
.wsdc{word-spacing:-1.735605pt;}
.wsaf{word-spacing:-1.722667pt;}
.ws134{word-spacing:-1.624000pt;}
.wse2{word-spacing:-1.621333pt;}
.ws43{word-spacing:-1.582463pt;}
.ws2a{word-spacing:-1.570667pt;}
.ws60{word-spacing:-1.520000pt;}
.ws20{word-spacing:-1.469333pt;}
.ws11b{word-spacing:-1.429321pt;}
.wsc2{word-spacing:-1.418667pt;}
.ws67{word-spacing:-1.378274pt;}
.ws66{word-spacing:-1.368000pt;}
.ws52{word-spacing:-1.266667pt;}
.wsc4{word-spacing:-1.114667pt;}
.ws39{word-spacing:-1.071991pt;}
.ws38{word-spacing:-1.064000pt;}
.ws78{word-spacing:-1.013333pt;}
.wsb9{word-spacing:-0.988703pt;}
.wsb8{word-spacing:-0.981333pt;}
.wsb6{word-spacing:-0.969897pt;}
.wsb5{word-spacing:-0.962667pt;}
.wsae{word-spacing:-0.918850pt;}
.ws65{word-spacing:-0.912000pt;}
.ws81{word-spacing:-0.810667pt;}
.wsa9{word-spacing:-0.760000pt;}
.wsa6{word-spacing:-0.682667pt;}
.ws11{word-spacing:-0.620000pt;}
.ws5b{word-spacing:-0.608000pt;}
.ws107{word-spacing:-0.557333pt;}
.ws7{word-spacing:-0.512000pt;}
.wsd4{word-spacing:-0.506667pt;}
.ws116{word-spacing:-0.459425pt;}
.ws113{word-spacing:-0.456000pt;}
.ws8e{word-spacing:-0.405333pt;}
.ws4a{word-spacing:-0.304000pt;}
.ws3b{word-spacing:-0.253333pt;}
.wsd2{word-spacing:-0.202667pt;}
.wse3{word-spacing:-0.152000pt;}
.ws77{word-spacing:-0.101333pt;}
.ws17{word-spacing:-0.094341pt;}
.ws3f{word-spacing:-0.085333pt;}
.ws5a{word-spacing:-0.050667pt;}
.ws1{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws42{word-spacing:0.050667pt;}
.ws10{word-spacing:0.082667pt;}
.wsc1{word-spacing:0.101333pt;}
.ws4{word-spacing:0.128000pt;}
.ws100{word-spacing:0.152000pt;}
.wse1{word-spacing:0.202667pt;}
.wse0{word-spacing:0.204189pt;}
.ws3e{word-spacing:0.213333pt;}
.wsac{word-spacing:0.253333pt;}
.wsab{word-spacing:0.255236pt;}
.ws68{word-spacing:0.304000pt;}
.ws19{word-spacing:0.329936pt;}
.ws59{word-spacing:0.354667pt;}
.ws6{word-spacing:0.384000pt;}
.ws9d{word-spacing:0.405333pt;}
.wsdd{word-spacing:0.408378pt;}
.ws14{word-spacing:0.413333pt;}
.ws95{word-spacing:0.456000pt;}
.ws84{word-spacing:0.506667pt;}
.wsaa{word-spacing:0.510472pt;}
.ws61{word-spacing:0.557333pt;}
.ws6a{word-spacing:0.608000pt;}
.ws5c{word-spacing:0.658667pt;}
.wsda{word-spacing:0.709333pt;}
.wsdb{word-spacing:0.714661pt;}
.ws49{word-spacing:0.760000pt;}
.wsb2{word-spacing:0.810667pt;}
.wsb3{word-spacing:0.816755pt;}
.ws64{word-spacing:0.861333pt;}
.ws7e{word-spacing:0.912000pt;}
.ws5{word-spacing:0.938667pt;}
.ws85{word-spacing:0.962667pt;}
.ws4f{word-spacing:1.013333pt;}
.ws4e{word-spacing:1.020944pt;}
.ws40{word-spacing:1.024000pt;}
.wsba{word-spacing:1.031690pt;}
.ws1a{word-spacing:1.045333pt;}
.ws9a{word-spacing:1.064000pt;}
.ws13{word-spacing:1.074667pt;}
.ws103{word-spacing:1.088000pt;}
.ws104{word-spacing:1.096171pt;}
.wsc{word-spacing:1.109333pt;}
.wsca{word-spacing:1.114667pt;}
.ws11a{word-spacing:1.123038pt;}
.ws2e{word-spacing:1.152000pt;}
.wsf{word-spacing:1.157333pt;}
.ws4b{word-spacing:1.165333pt;}
.wse{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.216000pt;}
.ws1c{word-spacing:1.225133pt;}
.ws1b{word-spacing:1.317333pt;}
.ws32{word-spacing:1.327227pt;}
.ws31{word-spacing:1.456000pt;}
.ws130{word-spacing:1.469333pt;}
.ws131{word-spacing:1.480369pt;}
.ws50{word-spacing:1.520000pt;}
.ws51{word-spacing:1.531416pt;}
.ws83{word-spacing:1.570667pt;}
.ws63{word-spacing:1.621333pt;}
.wsd{word-spacing:1.664000pt;}
.wsa1{word-spacing:1.672000pt;}
.wsb0{word-spacing:1.684557pt;}
.ws86{word-spacing:1.722667pt;}
.wsff{word-spacing:1.773333pt;}
.ws3a{word-spacing:1.874667pt;}
.wse4{word-spacing:1.888746pt;}
.wsb7{word-spacing:1.920000pt;}
.wsc6{word-spacing:1.976000pt;}
.ws9f{word-spacing:2.026667pt;}
.wsc9{word-spacing:2.077333pt;}
.wsad{word-spacing:2.128000pt;}
.wse9{word-spacing:2.178667pt;}
.wsea{word-spacing:2.195029pt;}
.wsc0{word-spacing:2.229333pt;}
.ws8f{word-spacing:2.280000pt;}
.ws71{word-spacing:2.330667pt;}
.wsd1{word-spacing:2.381333pt;}
.wsbd{word-spacing:2.432000pt;}
.wsbe{word-spacing:2.450265pt;}
.ws8d{word-spacing:2.533333pt;}
.ws124{word-spacing:2.552360pt;}
.ws30{word-spacing:2.579225pt;}
.ws6c{word-spacing:2.584000pt;}
.ws129{word-spacing:2.603407pt;}
.ws69{word-spacing:2.634667pt;}
.ws135{word-spacing:2.685333pt;}
.wsa{word-spacing:2.688000pt;}
.wsb4{word-spacing:2.837333pt;}
.wscf{word-spacing:2.938667pt;}
.wsce{word-spacing:2.960737pt;}
.ws2f{word-spacing:2.986667pt;}
.ws108{word-spacing:2.989333pt;}
.ws109{word-spacing:3.011784pt;}
.ws70{word-spacing:3.040000pt;}
.ws12c{word-spacing:3.090667pt;}
.ws123{word-spacing:3.113879pt;}
.wsd3{word-spacing:3.242667pt;}
.ws12f{word-spacing:3.293333pt;}
.wsa4{word-spacing:3.344000pt;}
.wseb{word-spacing:3.394667pt;}
.wsec{word-spacing:3.420162pt;}
.ws33{word-spacing:3.445333pt;}
.ws102{word-spacing:3.456000pt;}
.wse7{word-spacing:3.496000pt;}
.ws3c{word-spacing:3.546667pt;}
.ws11d{word-spacing:3.675398pt;}
.wsdf{word-spacing:3.698667pt;}
.wsde{word-spacing:3.726445pt;}
.wsc7{word-spacing:3.749333pt;}
.ws4c{word-spacing:3.901333pt;}
.ws4d{word-spacing:3.930634pt;}
.wsb1{word-spacing:3.952000pt;}
.ws34{word-spacing:4.002667pt;}
.ws101{word-spacing:4.010667pt;}
.ws35{word-spacing:4.032728pt;}
.ws3d{word-spacing:4.154667pt;}
.ws120{word-spacing:4.205333pt;}
.ws74{word-spacing:4.357333pt;}
.ws12d{word-spacing:4.458667pt;}
.wsc3{word-spacing:4.560000pt;}
.ws12{word-spacing:4.588000pt;}
.wsa0{word-spacing:4.610667pt;}
.ws7d{word-spacing:4.661333pt;}
.ws76{word-spacing:4.712000pt;}
.ws92{word-spacing:4.864000pt;}
.wsa3{word-spacing:4.914667pt;}
.wscb{word-spacing:5.218667pt;}
.wsbc{word-spacing:5.269333pt;}
.ws5d{word-spacing:5.370667pt;}
.ws9c{word-spacing:5.472000pt;}
.ws37{word-spacing:5.573333pt;}
.ws36{word-spacing:5.615191pt;}
.ws5e{word-spacing:5.624000pt;}
.ws5f{word-spacing:5.666239pt;}
.ws89{word-spacing:5.725333pt;}
.ws56{word-spacing:5.877333pt;}
.ws46{word-spacing:5.978667pt;}
.ws45{word-spacing:6.023569pt;}
.ws82{word-spacing:6.029333pt;}
.ws93{word-spacing:6.080000pt;}
.ws8a{word-spacing:6.282667pt;}
.ws94{word-spacing:6.333333pt;}
.ws99{word-spacing:6.536000pt;}
.ws7b{word-spacing:6.586667pt;}
.ws7f{word-spacing:6.637333pt;}
.ws11e{word-spacing:6.738667pt;}
.ws72{word-spacing:6.789333pt;}
.ws3{word-spacing:6.826667pt;}
.ws7a{word-spacing:6.890667pt;}
.ws54{word-spacing:7.042667pt;}
.ws79{word-spacing:7.093333pt;}
.ws9e{word-spacing:7.144000pt;}
.ws128{word-spacing:7.245333pt;}
.ws53{word-spacing:7.600000pt;}
.wsd0{word-spacing:7.752000pt;}
.ws62{word-spacing:7.954667pt;}
.ws6b{word-spacing:8.005333pt;}
.ws10e{word-spacing:8.014410pt;}
.ws88{word-spacing:8.208000pt;}
.wsa8{word-spacing:8.258667pt;}
.wse6{word-spacing:8.410667pt;}
.wsd5{word-spacing:8.461333pt;}
.ws8c{word-spacing:8.562667pt;}
.wsa5{word-spacing:8.714667pt;}
.wscc{word-spacing:8.917333pt;}
.wse5{word-spacing:8.968000pt;}
.wscd{word-spacing:8.984306pt;}
.wsee{word-spacing:9.035353pt;}
.wsc5{word-spacing:9.069333pt;}
.ws110{word-spacing:9.086401pt;}
.ws7c{word-spacing:9.120000pt;}
.wsd6{word-spacing:9.188495pt;}
.ws47{word-spacing:9.322667pt;}
.ws48{word-spacing:9.392684pt;}
.ws9b{word-spacing:9.424000pt;}
.ws6d{word-spacing:9.880000pt;}
.ws6e{word-spacing:9.954203pt;}
.ws125{word-spacing:10.133333pt;}
.ws75{word-spacing:10.285333pt;}
.wsa2{word-spacing:10.437333pt;}
.ws87{word-spacing:10.488000pt;}
.ws73{word-spacing:10.893333pt;}
.ws57{word-spacing:10.994667pt;}
.ws105{word-spacing:11.077241pt;}
.wse8{word-spacing:11.146667pt;}
.wsd7{word-spacing:11.332477pt;}
.wsbf{word-spacing:11.450667pt;}
.wsd9{word-spacing:11.805333pt;}
.wsd8{word-spacing:11.893996pt;}
.ws10f{word-spacing:12.200280pt;}
.ws115{word-spacing:12.413333pt;}
.wsef{word-spacing:12.514667pt;}
.ws112{word-spacing:12.768000pt;}
.ws121{word-spacing:12.818667pt;}
.ws122{word-spacing:12.914940pt;}
.ws10a{word-spacing:13.068082pt;}
.ws80{word-spacing:13.173333pt;}
.ws97{word-spacing:14.389333pt;}
.wsfe{word-spacing:15.402667pt;}
.wsed{word-spacing:15.504000pt;}
.ws117{word-spacing:15.620442pt;}
.ws98{word-spacing:16.416000pt;}
.ws10b{word-spacing:16.720000pt;}
.ws132{word-spacing:17.176000pt;}
.ws118{word-spacing:17.378667pt;}
.ws111{word-spacing:17.834667pt;}
.ws90{word-spacing:18.240000pt;}
.ws91{word-spacing:18.376990pt;}
.ws12b{word-spacing:18.746667pt;}
.ws12a{word-spacing:18.887462pt;}
.ws10c{word-spacing:20.520000pt;}
.ws10d{word-spacing:20.674114pt;}
.ws106{word-spacing:21.439822pt;}
.ws58{word-spacing:21.837333pt;}
.ws119{word-spacing:23.154667pt;}
.ws12e{word-spacing:24.421333pt;}
.wsf3{word-spacing:27.880000pt;}
.ws96{word-spacing:31.008000pt;}
.ws114{word-spacing:39.621333pt;}
.ws24{word-spacing:66.069333pt;}
.wsf5{word-spacing:69.088000pt;}
.wsf4{word-spacing:79.968000pt;}
.ws22{word-spacing:90.389333pt;}
.ws1f{word-spacing:114.709333pt;}
.wsf0{word-spacing:120.677333pt;}
.wsf6{word-spacing:123.533333pt;}
.wsf2{word-spacing:134.680800pt;}
.wsf1{word-spacing:176.392000pt;}
.wsfc{word-spacing:192.938667pt;}
.wsf9{word-spacing:301.326133pt;}
.wsfa{word-spacing:348.794667pt;}
.wsfd{word-spacing:422.461333pt;}
.wsf8{word-spacing:647.722667pt;}
.wsfb{word-spacing:799.317333pt;}
._20{margin-left:-92.520800pt;}
._1e{margin-left:-90.848000pt;}
._0{margin-left:-14.208000pt;}
._14{margin-left:-12.733653pt;}
._12{margin-left:-11.817600pt;}
._21{margin-left:-10.880000pt;}
._2{margin-left:-9.776000pt;}
._9{margin-left:-8.134293pt;}
._13{margin-left:-6.528936pt;}
._11{margin-left:-5.625067pt;}
._a{margin-left:-4.715093pt;}
._7{margin-left:-3.297280pt;}
._4{margin-left:-2.390400pt;}
._3{margin-left:-0.950400pt;}
._b{width:0.945067pt;}
._f{width:1.874667pt;}
._d{width:2.786667pt;}
._8{width:3.852480pt;}
._c{width:10.966080pt;}
._2c{width:12.464000pt;}
._30{width:18.088000pt;}
._2d{width:19.101333pt;}
._2a{width:20.061548pt;}
._35{width:24.573333pt;}
._2f{width:26.346667pt;}
._2e{width:28.981333pt;}
._32{width:31.616000pt;}
._31{width:33.794667pt;}
._2b{width:36.176000pt;}
._e{width:37.745067pt;}
._33{width:38.658667pt;}
._34{width:41.192000pt;}
._10{width:44.672000pt;}
._36{width:64.341333pt;}
._29{width:69.088000pt;}
._16{width:79.638400pt;}
._1f{width:80.627200pt;}
._1a{width:84.184000pt;}
._22{width:88.128000pt;}
._27{width:90.848000pt;}
._19{width:95.064000pt;}
._18{width:105.944000pt;}
._17{width:112.958400pt;}
._23{width:120.632000pt;}
._15{width:133.917227pt;}
._25{width:151.005333pt;}
._24{width:154.768000pt;}
._5{width:179.648000pt;}
._1{width:226.560000pt;}
._26{width:305.229333pt;}
._1d{width:316.109333pt;}
._28{width:483.739733pt;}
._1c{width:530.490667pt;}
._1b{width:991.893333pt;}
._6{width:1523.232000pt;}
.fs19{font-size:24.874667pt;}
.fs10{font-size:26.133333pt;}
.fs1a{font-size:29.538667pt;}
.fs18{font-size:32.648000pt;}
.fsf{font-size:37.333333pt;}
.fse{font-size:41.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1b{font-size:42.987101pt;}
.fs1c{font-size:45.333333pt;}
.fs1d{font-size:45.673799pt;}
.fs8{font-size:48.000000pt;}
.fs13{font-size:50.666667pt;}
.fs14{font-size:51.047195pt;}
.fs0{font-size:53.333333pt;}
.fs17{font-size:56.000000pt;}
.fsd{font-size:64.000000pt;}
.fs12{font-size:65.987200pt;}
.fsa{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fsc{font-size:89.600000pt;}
.fs11{font-size:94.341333pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:101.333333pt;}
.fs15{font-size:106.666667pt;}
.fs16{font-size:107.467720pt;}
.fsb{font-size:128.000000pt;}
.fs1{font-size:149.333333pt;}
.fs4{font-size:160.000000pt;}
.fs6{font-size:1365.333333pt;}
.fs5{font-size:1952.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:26.746133pt;}
.y5e{bottom:31.186267pt;}
.yf{bottom:40.501200pt;}
.y9{bottom:41.063867pt;}
.y5d{bottom:41.852933pt;}
.y5c{bottom:52.520933pt;}
.ye{bottom:69.301200pt;}
.y8{bottom:69.863867pt;}
.yd{bottom:98.101200pt;}
.y7{bottom:98.663867pt;}
.y19d{bottom:103.932000pt;}
.y12d{bottom:103.935867pt;}
.yaa{bottom:103.937067pt;}
.y24d{bottom:103.940800pt;}
.y204{bottom:106.153600pt;}
.y203{bottom:106.155600pt;}
.y122{bottom:106.588667pt;}
.yf0{bottom:106.616667pt;}
.y8a{bottom:109.326800pt;}
.y12c{bottom:115.935867pt;}
.y13c{bottom:115.937067pt;}
.ya9{bottom:115.940800pt;}
.y243{bottom:119.429467pt;}
.y244{bottom:119.433067pt;}
.y201{bottom:122.141867pt;}
.y202{bottom:122.153600pt;}
.y121{bottom:122.586667pt;}
.y18f{bottom:122.590667pt;}
.yef{bottom:122.614667pt;}
.y19c{bottom:123.494667pt;}
.y89{bottom:125.324800pt;}
.y13b{bottom:127.937067pt;}
.ya8{bottom:131.716800pt;}
.y242{bottom:135.427467pt;}
.y19b{bottom:135.494667pt;}
.y120{bottom:138.584667pt;}
.y18e{bottom:138.588667pt;}
.yee{bottom:138.612667pt;}
.y88{bottom:141.322800pt;}
.y200{bottom:141.927200pt;}
.ya7{bottom:143.716800pt;}
.y165{bottom:154.582667pt;}
.y164{bottom:154.584667pt;}
.y18d{bottom:154.586667pt;}
.y11f{bottom:154.596667pt;}
.yed{bottom:154.610667pt;}
.y1bd{bottom:155.164267pt;}
.y241{bottom:155.212800pt;}
.y24c{bottom:155.716800pt;}
.y87{bottom:157.322800pt;}
.yc{bottom:158.740000pt;}
.y1fe{bottom:161.702933pt;}
.y1ff{bottom:161.712533pt;}
.y163{bottom:170.582667pt;}
.y18c{bottom:170.584667pt;}
.y11e{bottom:170.594667pt;}
.yec{bottom:170.608667pt;}
.y240{bottom:171.210800pt;}
.y1bc{bottom:171.982933pt;}
.y86{bottom:173.322800pt;}
.ya{bottom:174.408000pt;}
.y1fd{bottom:177.700933pt;}
.y162{bottom:186.582667pt;}
.y161{bottom:186.586667pt;}
.y18b{bottom:186.588667pt;}
.y11d{bottom:186.592667pt;}
.yeb{bottom:186.606667pt;}
.y23f{bottom:187.208800pt;}
.y85{bottom:189.327733pt;}
.y1bb{bottom:189.553733pt;}
.y1fc{bottom:197.486267pt;}
.y160{bottom:202.584667pt;}
.y18a{bottom:202.586667pt;}
.y11c{bottom:202.590667pt;}
.yea{bottom:202.604667pt;}
.y84{bottom:205.325733pt;}
.y23e{bottom:206.994133pt;}
.y1ba{bottom:207.124667pt;}
.y34{bottom:207.874000pt;}
.y1fb{bottom:217.271600pt;}
.y1fa{bottom:217.273600pt;}
.y15f{bottom:218.582667pt;}
.y11b{bottom:218.588667pt;}
.y15e{bottom:218.592667pt;}
.ye9{bottom:218.602667pt;}
.y83{bottom:221.323733pt;}
.y23d{bottom:222.992133pt;}
.y23c{bottom:222.994133pt;}
.y1b9{bottom:224.695467pt;}
.y5a{bottom:230.721800pt;}
.y1f8{bottom:233.266000pt;}
.y1f9{bottom:233.271600pt;}
.y189{bottom:234.582667pt;}
.y11a{bottom:234.586667pt;}
.y15d{bottom:234.590667pt;}
.ye8{bottom:234.600667pt;}
.y23a{bottom:238.986533pt;}
.y23b{bottom:238.992133pt;}
.y1b8{bottom:242.266400pt;}
.y59{bottom:245.384800pt;}
.y1f7{bottom:249.264000pt;}
.y119{bottom:250.584667pt;}
.y15c{bottom:250.588667pt;}
.y188{bottom:250.592667pt;}
.ye7{bottom:250.598667pt;}
.y239{bottom:254.984533pt;}
.y82{bottom:256.220400pt;}
.y3d{bottom:256.916533pt;}
.y1b7{bottom:259.837200pt;}
.y58{bottom:260.051467pt;}
.y1f6{bottom:265.262000pt;}
.y118{bottom:266.582667pt;}
.y15b{bottom:266.586667pt;}
.y187{bottom:266.590667pt;}
.ye6{bottom:266.596667pt;}
.y238{bottom:270.982533pt;}
.y81{bottom:272.220400pt;}
.y3c{bottom:272.916533pt;}
.y1b6{bottom:277.408133pt;}
.y15a{bottom:282.584667pt;}
.y186{bottom:282.588667pt;}
.ye5{bottom:282.594667pt;}
.y1f5{bottom:285.047333pt;}
.y80{bottom:288.221467pt;}
.y3b{bottom:288.916533pt;}
.y237{bottom:290.767867pt;}
.y1b5{bottom:294.978933pt;}
.y117{bottom:298.582667pt;}
.y185{bottom:298.586667pt;}
.ye4{bottom:298.592667pt;}
.y3e{bottom:304.334400pt;}
.y1f4{bottom:304.832667pt;}
.y3a{bottom:304.916533pt;}
.y236{bottom:306.765867pt;}
.y1b4{bottom:312.549867pt;}
.y57{bottom:313.406467pt;}
.y184{bottom:314.584667pt;}
.ya6{bottom:314.590667pt;}
.y1f2{bottom:320.821067pt;}
.y1f3{bottom:320.830667pt;}
.y7f{bottom:323.118133pt;}
.y234{bottom:326.545600pt;}
.y235{bottom:326.551200pt;}
.y56{bottom:328.069467pt;}
.y1b3{bottom:330.120667pt;}
.y159{bottom:330.582667pt;}
.ya5{bottom:330.588667pt;}
.y183{bottom:330.604667pt;}
.y39{bottom:333.716533pt;}
.y1f1{bottom:336.819067pt;}
.y7e{bottom:339.118133pt;}
.y233{bottom:342.543600pt;}
.ya4{bottom:346.586667pt;}
.y182{bottom:346.602667pt;}
.y116{bottom:346.608667pt;}
.y1b2{bottom:347.691600pt;}
.y7d{bottom:355.119067pt;}
.y1f0{bottom:356.604400pt;}
.y232{bottom:358.541600pt;}
.ya3{bottom:362.584667pt;}
.y181{bottom:362.600667pt;}
.y115{bottom:362.606667pt;}
.y1b1{bottom:365.262400pt;}
.y32{bottom:369.335200pt;}
.y1ef{bottom:376.389733pt;}
.y1ee{bottom:376.391733pt;}
.y231{bottom:378.326933pt;}
.ya2{bottom:378.582667pt;}
.ya1{bottom:378.584667pt;}
.y158{bottom:378.596667pt;}
.y180{bottom:378.598667pt;}
.y114{bottom:378.604667pt;}
.y31{bottom:381.335200pt;}
.y1b0{bottom:382.833333pt;}
.y7c{bottom:390.015733pt;}
.y1ec{bottom:392.386133pt;}
.y1ed{bottom:392.389733pt;}
.y30{bottom:393.335200pt;}
.ya0{bottom:394.582667pt;}
.y9f{bottom:394.584667pt;}
.y157{bottom:394.594667pt;}
.y113{bottom:394.602667pt;}
.y230{bottom:398.112267pt;}
.y1af{bottom:400.404133pt;}
.y2f{bottom:405.335200pt;}
.y7b{bottom:406.015733pt;}
.y49{bottom:407.179333pt;}
.y1eb{bottom:408.384133pt;}
.y9e{bottom:410.582667pt;}
.y9d{bottom:410.584667pt;}
.y156{bottom:410.592667pt;}
.y17f{bottom:410.594667pt;}
.y112{bottom:410.600667pt;}
.y22f{bottom:414.110267pt;}
.y22e{bottom:414.114267pt;}
.y1ae{bottom:417.218800pt;}
.y2e{bottom:417.335200pt;}
.y48{bottom:419.979333pt;}
.y7a{bottom:422.016667pt;}
.y1ea{bottom:424.382133pt;}
.y9c{bottom:426.582667pt;}
.y155{bottom:426.590667pt;}
.y17e{bottom:426.592667pt;}
.y111{bottom:426.598667pt;}
.y55{bottom:429.150133pt;}
.y2d{bottom:429.335200pt;}
.y22d{bottom:430.112267pt;}
.y47{bottom:432.779333pt;}
.y1ac{bottom:433.278133pt;}
.y154{bottom:442.588667pt;}
.y17d{bottom:442.590667pt;}
.y110{bottom:442.596667pt;}
.y1e9{bottom:444.167467pt;}
.y22b{bottom:446.104667pt;}
.y22c{bottom:446.110267pt;}
.y1ad{bottom:449.337467pt;}
.y46{bottom:449.355333pt;}
.y79{bottom:456.913333pt;}
.y54{bottom:458.486467pt;}
.y9b{bottom:458.582667pt;}
.ye3{bottom:458.584667pt;}
.y153{bottom:458.586667pt;}
.y17c{bottom:458.588667pt;}
.y10f{bottom:458.594667pt;}
.y1e8{bottom:460.165467pt;}
.y2c{bottom:460.524533pt;}
.y22a{bottom:462.102667pt;}
.y45{bottom:465.931333pt;}
.y2b{bottom:472.524533pt;}
.y78{bottom:472.913333pt;}
.y53{bottom:473.149467pt;}
.ye2{bottom:474.582667pt;}
.ye1{bottom:474.584667pt;}
.y17b{bottom:474.586667pt;}
.y10e{bottom:474.592667pt;}
.y1e7{bottom:476.163467pt;}
.y229{bottom:478.100667pt;}
.y44{bottom:478.731333pt;}
.y2a{bottom:484.524533pt;}
.y52{bottom:487.812467pt;}
.y77{bottom:488.916400pt;}
.ye0{bottom:490.582667pt;}
.y17a{bottom:490.584667pt;}
.y10d{bottom:490.590667pt;}
.ydf{bottom:490.602667pt;}
.y43{bottom:495.307333pt;}
.y1e6{bottom:495.948800pt;}
.y19a{bottom:496.518667pt;}
.y228{bottom:497.886000pt;}
.y51{bottom:502.475467pt;}
.y12b{bottom:502.677200pt;}
.y76{bottom:504.914400pt;}
.y152{bottom:506.582667pt;}
.y179{bottom:506.586667pt;}
.y10c{bottom:506.588667pt;}
.yde{bottom:506.600667pt;}
.y151{bottom:506.622667pt;}
.y42{bottom:508.107333pt;}
.y1e5{bottom:511.941200pt;}
.y29{bottom:515.713867pt;}
.y199{bottom:516.081333pt;}
.y50{bottom:517.138467pt;}
.y227{bottom:517.671333pt;}
.y24b{bottom:522.582667pt;}
.y178{bottom:522.584667pt;}
.y10b{bottom:522.586667pt;}
.ydd{bottom:522.598667pt;}
.y150{bottom:522.620667pt;}
.y41{bottom:524.683333pt;}
.y28{bottom:527.713867pt;}
.y1e4{bottom:527.939200pt;}
.y198{bottom:528.081333pt;}
.y4f{bottom:531.801467pt;}
.y226{bottom:533.669333pt;}
.y225{bottom:533.671333pt;}
.y40{bottom:537.483333pt;}
.y9a{bottom:538.582667pt;}
.y10a{bottom:538.584667pt;}
.ydc{bottom:538.596667pt;}
.y177{bottom:538.602667pt;}
.y14f{bottom:538.618667pt;}
.y27{bottom:539.713867pt;}
.y75{bottom:539.811067pt;}
.y4e{bottom:546.468133pt;}
.y1e3{bottom:547.724533pt;}
.y223{bottom:549.663733pt;}
.y224{bottom:549.669333pt;}
.y1ab{bottom:551.532133pt;}
.y3f{bottom:554.062800pt;}
.y99{bottom:554.582667pt;}
.y109{bottom:554.584667pt;}
.ydb{bottom:554.594667pt;}
.y176{bottom:554.600667pt;}
.y14e{bottom:554.616667pt;}
.y74{bottom:555.811067pt;}
.y6{bottom:558.756267pt;}
.y222{bottom:565.661733pt;}
.y1e2{bottom:567.509867pt;}
.y98{bottom:570.582667pt;}
.y24a{bottom:570.584667pt;}
.yda{bottom:570.592667pt;}
.y175{bottom:570.598667pt;}
.y14d{bottom:570.614667pt;}
.y108{bottom:570.632667pt;}
.y26{bottom:570.903200pt;}
.y73{bottom:571.814000pt;}
.y1aa{bottom:575.150800pt;}
.y221{bottom:581.659733pt;}
.y25{bottom:582.903200pt;}
.y1e0{bottom:583.500267pt;}
.y1e1{bottom:583.507867pt;}
.y249{bottom:586.582667pt;}
.y248{bottom:586.584667pt;}
.yd9{bottom:586.590667pt;}
.y174{bottom:586.596667pt;}
.y14c{bottom:586.612667pt;}
.y107{bottom:586.630667pt;}
.y72{bottom:587.812000pt;}
.y24{bottom:594.903200pt;}
.y1a9{bottom:598.768933pt;}
.y220{bottom:601.445067pt;}
.y247{bottom:602.582667pt;}
.yd8{bottom:602.588667pt;}
.y173{bottom:602.594667pt;}
.y14b{bottom:602.610667pt;}
.y106{bottom:602.628667pt;}
.y1df{bottom:603.285600pt;}
.yd7{bottom:618.586667pt;}
.y14a{bottom:618.608667pt;}
.y105{bottom:618.626667pt;}
.y21f{bottom:621.230400pt;}
.y1a8{bottom:622.387067pt;}
.y71{bottom:622.708667pt;}
.y1de{bottom:623.070933pt;}
.y97{bottom:625.076533pt;}
.y23{bottom:626.092533pt;}
.y5{bottom:630.025600pt;}
.yd6{bottom:634.584667pt;}
.y172{bottom:634.590667pt;}
.y149{bottom:634.606667pt;}
.y104{bottom:634.624667pt;}
.y21e{bottom:637.228400pt;}
.y21d{bottom:637.232400pt;}
.y22{bottom:638.092533pt;}
.y70{bottom:638.708667pt;}
.y1dd{bottom:639.068933pt;}
.y96{bottom:639.743200pt;}
.y1a7{bottom:646.005067pt;}
.y21{bottom:650.092533pt;}
.yd5{bottom:650.582667pt;}
.yd4{bottom:650.588667pt;}
.y148{bottom:650.604667pt;}
.y103{bottom:650.622667pt;}
.y21c{bottom:653.230400pt;}
.y95{bottom:654.415200pt;}
.y6f{bottom:654.711600pt;}
.y1db{bottom:655.055333pt;}
.y1dc{bottom:655.066933pt;}
.yd3{bottom:666.586667pt;}
.yc0{bottom:666.590667pt;}
.y147{bottom:666.602667pt;}
.y102{bottom:666.620667pt;}
.y94{bottom:669.081867pt;}
.y21a{bottom:669.224800pt;}
.y21b{bottom:669.228400pt;}
.y1a6{bottom:669.623333pt;}
.y6e{bottom:670.709600pt;}
.y1da{bottom:674.840667pt;}
.y20{bottom:681.281867pt;}
.yd2{bottom:682.584667pt;}
.ybf{bottom:682.588667pt;}
.y146{bottom:682.600667pt;}
.y101{bottom:682.618667pt;}
.y219{bottom:685.222800pt;}
.y1a5{bottom:693.241333pt;}
.y1f{bottom:693.281867pt;}
.y1d9{bottom:694.626000pt;}
.y1d8{bottom:694.630000pt;}
.yd1{bottom:698.582667pt;}
.ybe{bottom:698.586667pt;}
.y145{bottom:698.598667pt;}
.y171{bottom:698.600667pt;}
.y100{bottom:698.616667pt;}
.y218{bottom:701.220800pt;}
.y4{bottom:701.294933pt;}
.y1e{bottom:705.281867pt;}
.y6d{bottom:705.606267pt;}
.y1d7{bottom:710.628000pt;}
.ybd{bottom:714.584667pt;}
.y144{bottom:714.596667pt;}
.y170{bottom:714.598667pt;}
.yff{bottom:714.614667pt;}
.y246{bottom:715.748000pt;}
.y93{bottom:715.748400pt;}
.y1a4{bottom:716.859467pt;}
.y217{bottom:721.006133pt;}
.y6c{bottom:721.606267pt;}
.y1d6{bottom:726.626000pt;}
.y1d5{bottom:726.628000pt;}
.ybc{bottom:730.582667pt;}
.yd0{bottom:730.588667pt;}
.y143{bottom:730.594667pt;}
.y16f{bottom:730.596667pt;}
.yfe{bottom:730.612667pt;}
.y1d{bottom:736.471200pt;}
.y216{bottom:737.004133pt;}
.y6b{bottom:737.607200pt;}
.y38{bottom:737.952800pt;}
.y1a3{bottom:740.477600pt;}
.y1d3{bottom:742.622133pt;}
.y1d4{bottom:742.626000pt;}
.ybb{bottom:746.582667pt;}
.yba{bottom:746.584667pt;}
.ycf{bottom:746.586667pt;}
.y142{bottom:746.592667pt;}
.y16e{bottom:746.594667pt;}
.yfd{bottom:746.610667pt;}
.y245{bottom:747.748000pt;}
.y92{bottom:747.748400pt;}
.y1c{bottom:748.471200pt;}
.y215{bottom:756.789467pt;}
.y1d2{bottom:758.620133pt;}
.y1b{bottom:760.471200pt;}
.yb9{bottom:762.582667pt;}
.yb8{bottom:762.584667pt;}
.y141{bottom:762.590667pt;}
.y16d{bottom:762.592667pt;}
.yfc{bottom:762.608667pt;}
.y1a2{bottom:764.095733pt;}
.y37{bottom:769.952800pt;}
.y6a{bottom:772.503867pt;}
.y3{bottom:772.564267pt;}
.y213{bottom:772.781733pt;}
.y214{bottom:772.787467pt;}
.y1d0{bottom:778.401733pt;}
.y1d1{bottom:778.405467pt;}
.yb7{bottom:778.582667pt;}
.y140{bottom:778.588667pt;}
.yfb{bottom:778.606667pt;}
.yce{bottom:778.610667pt;}
.y1a1{bottom:787.713733pt;}
.y69{bottom:788.503867pt;}
.y212{bottom:788.779733pt;}
.y1a{bottom:791.660533pt;}
.y1cf{bottom:794.399733pt;}
.y13f{bottom:794.586667pt;}
.y16c{bottom:794.588667pt;}
.yfa{bottom:794.604667pt;}
.ycd{bottom:794.608667pt;}
.y36{bottom:801.952800pt;}
.y19{bottom:803.660533pt;}
.y68{bottom:804.506933pt;}
.y211{bottom:804.777733pt;}
.y1a0{bottom:807.552133pt;}
.y4d{bottom:810.468133pt;}
.yb6{bottom:810.582667pt;}
.y13a{bottom:810.584667pt;}
.y135{bottom:810.586667pt;}
.yf9{bottom:810.602667pt;}
.ycc{bottom:810.606667pt;}
.y91{bottom:811.748000pt;}
.y1cd{bottom:814.177467pt;}
.y1ce{bottom:814.185067pt;}
.y18{bottom:815.660533pt;}
.y67{bottom:820.504933pt;}
.y19e{bottom:823.611467pt;}
.y210{bottom:824.563067pt;}
.y4c{bottom:825.134800pt;}
.y139{bottom:826.582667pt;}
.y134{bottom:826.584667pt;}
.y138{bottom:826.586667pt;}
.yf8{bottom:826.600667pt;}
.ycb{bottom:826.604667pt;}
.y1cc{bottom:830.175467pt;}
.y35{bottom:833.952800pt;}
.y19f{bottom:839.670800pt;}
.y20f{bottom:840.561067pt;}
.y133{bottom:842.582667pt;}
.y137{bottom:842.584667pt;}
.yf7{bottom:842.598667pt;}
.yca{bottom:842.602667pt;}
.y90{bottom:843.748000pt;}
.y2{bottom:843.833600pt;}
.y17{bottom:846.849867pt;}
.y1cb{bottom:849.960800pt;}
.y66{bottom:855.401600pt;}
.y136{bottom:858.582667pt;}
.y132{bottom:858.584667pt;}
.y16b{bottom:858.586667pt;}
.yb5{bottom:858.590667pt;}
.yf6{bottom:858.596667pt;}
.yc9{bottom:858.600667pt;}
.y16{bottom:858.849867pt;}
.y20e{bottom:860.346400pt;}
.y20d{bottom:860.350400pt;}
.y4b{bottom:869.134800pt;}
.y1ca{bottom:869.746133pt;}
.y15{bottom:870.849867pt;}
.y65{bottom:871.403600pt;}
.y131{bottom:874.582667pt;}
.y130{bottom:874.584667pt;}
.yb4{bottom:874.588667pt;}
.yf5{bottom:874.594667pt;}
.yc8{bottom:874.598667pt;}
.y8f{bottom:875.748000pt;}
.y20c{bottom:876.348400pt;}
.y4a{bottom:883.801467pt;}
.y1c9{bottom:885.744133pt;}
.y1c8{bottom:885.748133pt;}
.y64{bottom:887.401600pt;}
.y12f{bottom:890.582667pt;}
.y16a{bottom:890.584667pt;}
.yb3{bottom:890.586667pt;}
.yf4{bottom:890.592667pt;}
.yc7{bottom:890.596667pt;}
.y197{bottom:890.605333pt;}
.y12a{bottom:890.609333pt;}
.y20a{bottom:892.336800pt;}
.y20b{bottom:892.346400pt;}
.y1c7{bottom:901.746133pt;}
.y14{bottom:902.039200pt;}
.y63{bottom:903.403600pt;}
.y12e{bottom:906.582667pt;}
.yb2{bottom:906.584667pt;}
.y13e{bottom:906.586667pt;}
.yf3{bottom:906.590667pt;}
.yc6{bottom:906.594667pt;}
.y196{bottom:906.603333pt;}
.y129{bottom:906.607333pt;}
.y209{bottom:912.122133pt;}
.y13{bottom:914.039200pt;}
.y1c6{bottom:917.744133pt;}
.y1c5{bottom:917.746133pt;}
.y62{bottom:919.401600pt;}
.yb1{bottom:922.582667pt;}
.y13d{bottom:922.584667pt;}
.yf2{bottom:922.588667pt;}
.yc5{bottom:922.592667pt;}
.y195{bottom:922.601333pt;}
.y128{bottom:922.605333pt;}
.y12{bottom:926.039200pt;}
.y208{bottom:931.907467pt;}
.y1c3{bottom:933.734533pt;}
.y1c4{bottom:933.744133pt;}
.y11{bottom:938.039200pt;}
.yb0{bottom:938.582667pt;}
.yaf{bottom:938.584667pt;}
.yf1{bottom:938.586667pt;}
.yc4{bottom:938.590667pt;}
.y194{bottom:938.599333pt;}
.y127{bottom:938.603333pt;}
.y206{bottom:947.899733pt;}
.y207{bottom:947.905467pt;}
.y1c2{bottom:953.519867pt;}
.yae{bottom:954.582667pt;}
.yad{bottom:954.584667pt;}
.y169{bottom:954.586667pt;}
.yc3{bottom:954.588667pt;}
.y193{bottom:954.597333pt;}
.y126{bottom:954.601333pt;}
.y205{bottom:967.685067pt;}
.y10{bottom:969.230800pt;}
.yac{bottom:970.582667pt;}
.y168{bottom:970.584667pt;}
.yc2{bottom:970.586667pt;}
.y192{bottom:970.595333pt;}
.y125{bottom:970.599333pt;}
.y1c1{bottom:973.305200pt;}
.y8e{bottom:973.582667pt;}
.y8d{bottom:985.582667pt;}
.y167{bottom:986.582667pt;}
.yc1{bottom:986.584667pt;}
.y191{bottom:986.593333pt;}
.y124{bottom:986.597333pt;}
.y61{bottom:989.196800pt;}
.y1bf{bottom:989.297333pt;}
.y1c0{bottom:989.303200pt;}
.y8c{bottom:997.582667pt;}
.yab{bottom:1002.582667pt;}
.y166{bottom:1002.590667pt;}
.y190{bottom:1002.591333pt;}
.y123{bottom:1002.595333pt;}
.y1be{bottom:1009.082667pt;}
.y8b{bottom:1009.582667pt;}
.y33{bottom:1039.535333pt;}
.y5b{bottom:1052.377867pt;}
.y60{bottom:1052.877867pt;}
.yb{bottom:1053.037200pt;}
.y1{bottom:1069.994267pt;}
.hb{height:31.701333pt;}
.h18{height:32.442667pt;}
.h19{height:32.448000pt;}
.h1b{height:32.480000pt;}
.h20{height:35.077333pt;}
.h15{height:35.960000pt;}
.h16{height:36.166667pt;}
.h17{height:37.077333pt;}
.h14{height:37.120000pt;}
.h12{height:37.333333pt;}
.h28{height:37.355791pt;}
.hc{height:38.997333pt;}
.h29{height:39.394667pt;}
.h2a{height:39.690531pt;}
.ha{height:40.064000pt;}
.h22{height:41.712000pt;}
.h21{height:42.000000pt;}
.h1f{height:44.029333pt;}
.h9{height:44.064000pt;}
.h1d{height:44.333333pt;}
.h1e{height:44.360012pt;}
.h27{height:44.666295pt;}
.h11{height:46.400000pt;}
.h2{height:48.746667pt;}
.h25{height:49.000000pt;}
.h26{height:49.021333pt;}
.h13{height:56.000000pt;}
.h10{height:64.960000pt;}
.hd{height:68.245333pt;}
.h5{height:73.120000pt;}
.h8{height:76.506667pt;}
.h2b{height:81.280000pt;}
.he{height:83.520000pt;}
.h1a{height:86.227979pt;}
.h4{height:87.744000pt;}
.h24{height:93.389449pt;}
.h23{height:95.253333pt;}
.h1c{height:112.000000pt;}
.hf{height:112.256000pt;}
.h3{height:140.224000pt;}
.h6{height:146.240000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h7{height:1784.128000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-776.350400pt;}
.xc{left:-759.342667pt;}
.x5{left:-41.450000pt;}
.x1{left:-37.954000pt;}
.x3{left:-35.447333pt;}
.x2{left:-34.402000pt;}
.x6{left:-33.386000pt;}
.x7{left:-31.442000pt;}
.x4{left:-30.258000pt;}
.x8{left:-18.192400pt;}
.x0{left:0.000000pt;}
.xa{left:4.614400pt;}
.x9{left:34.358267pt;}
.x18{left:56.692933pt;}
.x3b{left:62.241333pt;}
.x90{left:71.089733pt;}
.x3d{left:75.590533pt;}
.xa2{left:77.161733pt;}
.x3c{left:79.511200pt;}
.x9c{left:85.802400pt;}
.x3a{left:86.929067pt;}
.x98{left:91.411467pt;}
.x24{left:94.488133pt;}
.xc4{left:96.426933pt;}
.x5e{left:98.676933pt;}
.xc5{left:99.786933pt;}
.x99{left:105.239867pt;}
.x30{left:113.385867pt;}
.x91{left:115.281733pt;}
.xc7{left:118.293600pt;}
.xa5{left:122.189200pt;}
.xaa{left:123.203733pt;}
.x42{left:128.462533pt;}
.xa6{left:129.432133pt;}
.xa7{left:130.692533pt;}
.xe{left:132.283467pt;}
.x6a{left:136.475467pt;}
.xf{left:141.291867pt;}
.x4b{left:144.037867pt;}
.x26{left:145.571600pt;}
.xbe{left:148.038667pt;}
.x10{left:148.952133pt;}
.x11{left:150.404133pt;}
.x5c{left:152.943467pt;}
.x27{left:155.064933pt;}
.x2f{left:156.040933pt;}
.x15{left:158.935333pt;}
.x16{left:162.028667pt;}
.x2e{left:165.792667pt;}
.x6b{left:167.515067pt;}
.x78{left:168.626400pt;}
.x6c{left:170.556800pt;}
.x92{left:173.948667pt;}
.x2d{left:176.471467pt;}
.xa1{left:180.804267pt;}
.xbf{left:184.031600pt;}
.x93{left:186.552267pt;}
.x35{left:191.831733pt;}
.x13{left:192.943867pt;}
.x9d{left:198.337600pt;}
.xa3{left:204.033333pt;}
.x28{left:207.598267pt;}
.x68{left:213.180933pt;}
.x43{left:216.419200pt;}
.xb{left:218.799200pt;}
.x25{left:219.734267pt;}
.x95{left:221.070667pt;}
.xa4{left:224.502267pt;}
.x79{left:230.489067pt;}
.xc6{left:231.520267pt;}
.x69{left:233.102933pt;}
.x94{left:234.844933pt;}
.xc3{left:235.799867pt;}
.xad{left:239.520933pt;}
.x19{left:241.889733pt;}
.x5a{left:244.590267pt;}
.x29{left:250.927813pt;}
.xc1{left:253.494933pt;}
.x96{left:257.930000pt;}
.x9a{left:265.032800pt;}
.x5b{left:273.083333pt;}
.x66{left:276.432400pt;}
.x6d{left:278.745600pt;}
.x7a{left:280.442400pt;}
.xa0{left:284.335200pt;}
.x36{left:288.917333pt;}
.x9e{left:294.619333pt;}
.xac{left:295.836667pt;}
.xa8{left:298.557200pt;}
.x9f{left:307.390533pt;}
.x12{left:309.166533pt;}
.x67{left:312.297600pt;}
.x17{left:314.855333pt;}
.x9b{left:316.857333pt;}
.xc0{left:318.487600pt;}
.xbd{left:320.206667pt;}
.x82{left:325.275067pt;}
.xc2{left:332.098800pt;}
.x6e{left:339.889733pt;}
.x14{left:348.322000pt;}
.x1a{left:351.495400pt;}
.x97{left:353.218933pt;}
.xab{left:354.871733pt;}
.x7b{left:361.965733pt;}
.x23{left:369.508267pt;}
.x83{left:383.087467pt;}
.x5d{left:393.070800pt;}
.x7c{left:394.075867pt;}
.x8b{left:396.351333pt;}
.x6f{left:402.820533pt;}
.x47{left:406.675067pt;}
.x86{left:411.968533pt;}
.xae{left:417.390533pt;}
.x4f{left:430.866133pt;}
.x70{left:436.409467pt;}
.x71{left:439.451200pt;}
.x4c{left:441.564000pt;}
.x8c{left:445.465200pt;}
.x1e{left:448.529600pt;}
.x50{left:449.764800pt;}
.x48{left:453.175733pt;}
.x3e{left:456.185200pt;}
.x7d{left:457.528000pt;}
.x1b{left:461.101067pt;}
.x22{left:463.053333pt;}
.xa9{left:467.501867pt;}
.xb1{left:468.555200pt;}
.x49{left:470.180133pt;}
.xb7{left:472.146133pt;}
.x63{left:481.697200pt;}
.xb0{left:485.523467pt;}
.x72{left:486.780400pt;}
.x64{left:493.297733pt;}
.x7e{left:498.839467pt;}
.x3f{left:499.954400pt;}
.x7f{left:501.156267pt;}
.xb2{left:503.502133pt;}
.x84{left:504.612267pt;}
.xb6{left:511.411867pt;}
.xbb{left:518.240667pt;}
.x40{left:522.817333pt;}
.x31{left:524.148400pt;}
.x44{left:527.612933pt;}
.x57{left:534.602667pt;}
.x65{left:537.810400pt;}
.xaf{left:540.719867pt;}
.x4d{left:542.726667pt;}
.x8e{left:544.967733pt;}
.x73{left:547.063867pt;}
.x1f{left:551.204027pt;}
.x4a{left:552.297733pt;}
.x87{left:556.296933pt;}
.x85{left:559.599867pt;}
.x8d{left:560.661600pt;}
.x1c{left:570.706733pt;}
.x80{left:578.182533pt;}
.x2a{left:579.921200pt;}
.x37{left:581.921600pt;}
.x74{left:586.457067pt;}
.x51{left:587.978533pt;}
.x59{left:589.135600pt;}
.x2c{left:590.539867pt;}
.x20{left:592.016427pt;}
.xb9{left:596.902400pt;}
.x58{left:599.253867pt;}
.x33{left:600.795733pt;}
.x2b{left:602.590267pt;}
.xbc{left:606.425333pt;}
.x4e{left:608.099067pt;}
.x53{left:609.240133pt;}
.xb3{left:610.820400pt;}
.x8a{left:612.572267pt;}
.x41{left:613.694533pt;}
.x52{left:616.557600pt;}
.x75{left:618.873333pt;}
.x5f{left:622.546667pt;}
.x45{left:626.034400pt;}
.x8f{left:628.801067pt;}
.x88{left:631.281067pt;}
.x60{left:633.435067pt;}
.x55{left:636.056667pt;}
.xba{left:637.824000pt;}
.x81{left:641.816133pt;}
.x32{left:646.605067pt;}
.x61{left:649.021867pt;}
.x89{left:651.749867pt;}
.xc8{left:653.682933pt;}
.x54{left:658.297467pt;}
.x38{left:666.428133pt;}
.x56{left:672.916000pt;}
.x62{left:680.469067pt;}
.xb8{left:683.650000pt;}
.x34{left:687.950533pt;}
.x46{left:693.359067pt;}
.xb5{left:696.639600pt;}
.xb4{left:699.212533pt;}
.x76{left:703.419067pt;}
.x1d{left:721.219600pt;}
.x39{left:731.154533pt;}
.x21{left:733.369600pt;}
.x77{left:737.007867pt;}
}




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