
    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_1b44ef34cebfdae0b3ac3313.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_68be1cf2fda91c56b56eece6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_ba63af7c2aa004d3a08d4025.woff')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_f6b7e00f89c9d94ed211e977.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_d1b8561b739d79835cc8d222.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_77cc9f07ee098b95c7d36f01.woff')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_97c67578f9efe353cddb1b82.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_c2d386ca28d5c49c9baa9146.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1b44ef34cebfdae0b3ac3313.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3abc214ddf29be5c1dd3f5bd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-13.860000px;}
.v3{vertical-align:-1.297200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.066600px;}
.v2{vertical-align:11.976000px;}
.v4{vertical-align:13.881000px;}
.ls85{letter-spacing:-8.721000px;}
.ls13{letter-spacing:-6.867000px;}
.ls80{letter-spacing:-6.156000px;}
.ls5b{letter-spacing:-6.120000px;}
.ls71{letter-spacing:-5.700000px;}
.ls5d{letter-spacing:-5.610000px;}
.ls6b{letter-spacing:-3.078000px;}
.ls41{letter-spacing:-2.709000px;}
.ls52{letter-spacing:-2.646000px;}
.ls35{letter-spacing:-2.550000px;}
.ls65{letter-spacing:-2.508000px;}
.ls45{letter-spacing:-2.499000px;}
.ls5{letter-spacing:-2.475000px;}
.ls64{letter-spacing:-2.337000px;}
.ls51{letter-spacing:-2.331000px;}
.ls7b{letter-spacing:-2.223000px;}
.ls50{letter-spacing:-2.205000px;}
.ls7c{letter-spacing:-2.166000px;}
.ls56{letter-spacing:-2.142000px;}
.ls14{letter-spacing:-2.079000px;}
.ls6{letter-spacing:-2.025000px;}
.ls2f{letter-spacing:-2.016000px;}
.ls48{letter-spacing:-1.953000px;}
.ls67{letter-spacing:-1.938000px;}
.ls1e{letter-spacing:-1.890000px;}
.lsc{letter-spacing:-1.881000px;}
.ls3e{letter-spacing:-1.827000px;}
.ls6a{letter-spacing:-1.767000px;}
.ls32{letter-spacing:-1.764000px;}
.ls57{letter-spacing:-1.734000px;}
.ls81{letter-spacing:-1.710000px;}
.ls5a{letter-spacing:-1.701000px;}
.ls84{letter-spacing:-1.596000px;}
.ls12{letter-spacing:-1.575000px;}
.ls1f{letter-spacing:-1.512000px;}
.ls68{letter-spacing:-1.482000px;}
.ls5f{letter-spacing:-1.449000px;}
.ls36{letter-spacing:-1.428000px;}
.lsb{letter-spacing:-1.425000px;}
.ls21{letter-spacing:-1.386000px;}
.ls70{letter-spacing:-1.368000px;}
.ls22{letter-spacing:-1.323000px;}
.ls10{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-1.275000px;}
.ls1b{letter-spacing:-1.260000px;}
.ls62{letter-spacing:-1.254000px;}
.ls27{letter-spacing:-1.197000px;}
.ls3c{letter-spacing:-1.173000px;}
.ls63{letter-spacing:-1.140000px;}
.ls3b{letter-spacing:-1.134000px;}
.ls6d{letter-spacing:-1.083000px;}
.ls1c{letter-spacing:-1.071000px;}
.ls73{letter-spacing:-1.026000px;}
.ls43{letter-spacing:-1.020000px;}
.ls40{letter-spacing:-1.008000px;}
.ls78{letter-spacing:-0.969000px;}
.ls11{letter-spacing:-0.945000px;}
.ls3f{letter-spacing:-0.918000px;}
.ls82{letter-spacing:-0.912000px;}
.ls61{letter-spacing:-0.900000px;}
.ls15{letter-spacing:-0.882000px;}
.ls9{letter-spacing:-0.855000px;}
.ls4b{letter-spacing:-0.840000px;}
.ls29{letter-spacing:-0.819000px;}
.ls58{letter-spacing:-0.798000px;}
.ls2{letter-spacing:-0.765000px;}
.ls20{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.741000px;}
.ls17{letter-spacing:-0.714000px;}
.ls1d{letter-spacing:-0.693000px;}
.ls7{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.684000px;}
.ls18{letter-spacing:-0.663000px;}
.ls4e{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.630000px;}
.ls6e{letter-spacing:-0.627000px;}
.ls8{letter-spacing:-0.600000px;}
.ls77{letter-spacing:-0.570000px;}
.ls42{letter-spacing:-0.567000px;}
.ls53{letter-spacing:-0.546000px;}
.ls0{letter-spacing:-0.540000px;}
.ls76{letter-spacing:-0.513000px;}
.ls3{letter-spacing:-0.510000px;}
.ls37{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.459000px;}
.ls66{letter-spacing:-0.456000px;}
.ls2b{letter-spacing:-0.441000px;}
.ls7a{letter-spacing:-0.399000px;}
.ls30{letter-spacing:-0.378000px;}
.ls19{letter-spacing:-0.357000px;}
.ls28{letter-spacing:-0.330000px;}
.ls31{letter-spacing:-0.315000px;}
.ls75{letter-spacing:-0.285000px;}
.ls4c{letter-spacing:-0.255000px;}
.ls2c{letter-spacing:-0.252000px;}
.ls86{letter-spacing:-0.228000px;}
.lsf{letter-spacing:-0.225000px;}
.ls2e{letter-spacing:-0.189000px;}
.ls2a{letter-spacing:-0.126000px;}
.ls7e{letter-spacing:-0.114000px;}
.ls1{letter-spacing:-0.090000px;}
.ls26{letter-spacing:-0.063000px;}
.ls72{letter-spacing:-0.057000px;}
.ls5c{letter-spacing:-0.051000px;}
.ls4{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.051000px;}
.ls3a{letter-spacing:0.063000px;}
.ls59{letter-spacing:0.084000px;}
.ls79{letter-spacing:0.114000px;}
.ls39{letter-spacing:0.126000px;}
.ls74{letter-spacing:0.171000px;}
.ls24{letter-spacing:0.189000px;}
.ls4a{letter-spacing:0.204000px;}
.lse{letter-spacing:0.225000px;}
.ls83{letter-spacing:0.228000px;}
.ls38{letter-spacing:0.252000px;}
.ls4d{letter-spacing:0.255000px;}
.ls47{letter-spacing:0.315000px;}
.ls6c{letter-spacing:0.342000px;}
.ls4f{letter-spacing:0.378000px;}
.ls60{letter-spacing:0.441000px;}
.ls23{letter-spacing:0.504000px;}
.ls7f{letter-spacing:0.513000px;}
.ls46{letter-spacing:0.567000px;}
.ls6f{letter-spacing:0.570000px;}
.ls49{letter-spacing:0.630000px;}
.ls33{letter-spacing:0.693000px;}
.ls54{letter-spacing:0.765000px;}
.ls25{letter-spacing:0.819000px;}
.ls34{letter-spacing:0.945000px;}
.ls55{letter-spacing:1.020000px;}
.ls7d{letter-spacing:1.311000px;}
.ls5e{letter-spacing:1.575000px;}
.ls69{letter-spacing:4.161000px;}
.ls1a{letter-spacing:5.922000px;}
.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;}
}
.ws39{word-spacing:-14.616000px;}
.ws3a{word-spacing:-14.364000px;}
.ws66{word-spacing:-13.992000px;}
.wsd2{word-spacing:-13.860000px;}
.wsbc{word-spacing:-13.662000px;}
.wsd3{word-spacing:-13.545000px;}
.ws108{word-spacing:-13.452000px;}
.wsd1{word-spacing:-13.293000px;}
.ws3b{word-spacing:-13.230000px;}
.wsb0{word-spacing:-13.041000px;}
.ws17{word-spacing:-13.002000px;}
.ws38{word-spacing:-12.978000px;}
.ws3c{word-spacing:-12.915000px;}
.wsaf{word-spacing:-12.852000px;}
.ws115{word-spacing:-12.711000px;}
.ws73{word-spacing:-12.663000px;}
.ws96{word-spacing:-12.600000px;}
.wsae{word-spacing:-12.474000px;}
.wse3{word-spacing:-12.426000px;}
.ws1{word-spacing:-12.420000px;}
.ws65{word-spacing:-12.411000px;}
.wsf6{word-spacing:-12.198000px;}
.wsd5{word-spacing:-12.120000px;}
.ws3{word-spacing:-12.084000px;}
.ws106{word-spacing:-11.970000px;}
.wsf5{word-spacing:-11.799000px;}
.wsbd{word-spacing:-11.781000px;}
.ws9f{word-spacing:-11.718000px;}
.wsb5{word-spacing:-11.628000px;}
.wsb4{word-spacing:-11.424000px;}
.wsa2{word-spacing:-11.118000px;}
.ws1b{word-spacing:-10.914000px;}
.ws107{word-spacing:-10.887000px;}
.ws0{word-spacing:-10.812000px;}
.ws98{word-spacing:-10.659000px;}
.wsc2{word-spacing:-10.557000px;}
.ws2{word-spacing:-10.488000px;}
.ws1a{word-spacing:-10.404000px;}
.ws8d{word-spacing:-10.302000px;}
.ws74{word-spacing:-10.251000px;}
.ws11d{word-spacing:-9.975000px;}
.wscb{word-spacing:-9.618000px;}
.ws18{word-spacing:-9.534000px;}
.ws97{word-spacing:-9.408000px;}
.wsa3{word-spacing:-9.078000px;}
.wsbe{word-spacing:-8.988000px;}
.ws95{word-spacing:-8.904000px;}
.wsca{word-spacing:-8.736000px;}
.wsc9{word-spacing:-8.694000px;}
.ws19{word-spacing:-7.434000px;}
.wse4{word-spacing:-7.239000px;}
.wscd{word-spacing:-6.069000px;}
.wscc{word-spacing:-5.559000px;}
.wsc8{word-spacing:-1.020000px;}
.wsc7{word-spacing:-0.765000px;}
.wsba{word-spacing:-0.255000px;}
.ws1c{word-spacing:-0.225000px;}
.ws93{word-spacing:-0.051000px;}
.ws5{word-spacing:0.000000px;}
.ws111{word-spacing:0.057000px;}
.ws2c{word-spacing:0.063000px;}
.ws114{word-spacing:0.114000px;}
.ws84{word-spacing:0.126000px;}
.wsfb{word-spacing:0.171000px;}
.ws72{word-spacing:0.189000px;}
.ws1d{word-spacing:0.225000px;}
.ws105{word-spacing:0.228000px;}
.ws1e{word-spacing:0.252000px;}
.wse{word-spacing:0.285000px;}
.ws81{word-spacing:0.315000px;}
.ws2b{word-spacing:0.378000px;}
.ws10a{word-spacing:0.399000px;}
.ws92{word-spacing:0.441000px;}
.ws4{word-spacing:0.450000px;}
.ws87{word-spacing:0.504000px;}
.ws101{word-spacing:0.513000px;}
.ws3d{word-spacing:0.540000px;}
.wsa6{word-spacing:0.561000px;}
.ws88{word-spacing:0.567000px;}
.wse9{word-spacing:0.570000px;}
.wsde{word-spacing:0.627000px;}
.ws9a{word-spacing:0.630000px;}
.wse1{word-spacing:0.684000px;}
.ws43{word-spacing:0.693000px;}
.ws9{word-spacing:0.741000px;}
.ws4b{word-spacing:0.756000px;}
.ws34{word-spacing:0.765000px;}
.wsdf{word-spacing:0.798000px;}
.ws32{word-spacing:0.816000px;}
.ws5f{word-spacing:0.819000px;}
.wsb7{word-spacing:0.840000px;}
.wse2{word-spacing:0.855000px;}
.ws7d{word-spacing:0.867000px;}
.ws41{word-spacing:0.882000px;}
.wsa{word-spacing:0.912000px;}
.ws27{word-spacing:0.945000px;}
.wsf{word-spacing:0.969000px;}
.ws64{word-spacing:1.008000px;}
.wsc1{word-spacing:1.020000px;}
.wsc4{word-spacing:1.071000px;}
.ws10f{word-spacing:1.083000px;}
.ws7c{word-spacing:1.134000px;}
.ws113{word-spacing:1.140000px;}
.wsa7{word-spacing:1.173000px;}
.ws7a{word-spacing:1.197000px;}
.wsb9{word-spacing:1.224000px;}
.wsd7{word-spacing:1.254000px;}
.ws4a{word-spacing:1.260000px;}
.wsf7{word-spacing:1.311000px;}
.wsab{word-spacing:1.323000px;}
.wsf8{word-spacing:1.368000px;}
.wsa4{word-spacing:1.386000px;}
.ws11c{word-spacing:1.425000px;}
.ws23{word-spacing:1.449000px;}
.ws9c{word-spacing:1.512000px;}
.wse8{word-spacing:1.539000px;}
.ws8b{word-spacing:1.575000px;}
.wsfd{word-spacing:1.596000px;}
.ws69{word-spacing:1.638000px;}
.ws91{word-spacing:1.701000px;}
.wsda{word-spacing:1.710000px;}
.wsad{word-spacing:1.764000px;}
.wse6{word-spacing:1.767000px;}
.ws52{word-spacing:1.827000px;}
.ws37{word-spacing:1.887000px;}
.ws6d{word-spacing:1.890000px;}
.wsdd{word-spacing:1.938000px;}
.wsb3{word-spacing:1.953000px;}
.wsf0{word-spacing:1.995000px;}
.ws62{word-spacing:2.016000px;}
.ws20{word-spacing:2.079000px;}
.ws63{word-spacing:2.142000px;}
.ws6e{word-spacing:2.205000px;}
.ws58{word-spacing:2.268000px;}
.wsdb{word-spacing:2.337000px;}
.ws9b{word-spacing:2.394000px;}
.wse7{word-spacing:2.451000px;}
.ws8e{word-spacing:2.457000px;}
.ws14{word-spacing:2.508000px;}
.ws57{word-spacing:2.520000px;}
.ws7f{word-spacing:2.550000px;}
.ws104{word-spacing:2.565000px;}
.ws85{word-spacing:2.583000px;}
.ws60{word-spacing:2.646000px;}
.ws12{word-spacing:2.679000px;}
.ws79{word-spacing:2.709000px;}
.ws15{word-spacing:2.736000px;}
.wsc6{word-spacing:2.754000px;}
.ws46{word-spacing:2.772000px;}
.ws30{word-spacing:2.835000px;}
.ws8a{word-spacing:2.898000px;}
.wsac{word-spacing:2.961000px;}
.wsd8{word-spacing:2.964000px;}
.wsd9{word-spacing:3.021000px;}
.ws40{word-spacing:3.024000px;}
.ws26{word-spacing:3.087000px;}
.wsf9{word-spacing:3.135000px;}
.ws5a{word-spacing:3.150000px;}
.ws118{word-spacing:3.192000px;}
.wsa5{word-spacing:3.213000px;}
.wsee{word-spacing:3.249000px;}
.wsce{word-spacing:3.264000px;}
.ws56{word-spacing:3.276000px;}
.ws102{word-spacing:3.306000px;}
.ws54{word-spacing:3.339000px;}
.ws2f{word-spacing:3.402000px;}
.ws31{word-spacing:3.465000px;}
.ws6{word-spacing:3.519000px;}
.ws25{word-spacing:3.528000px;}
.wsc{word-spacing:3.534000px;}
.ws9d{word-spacing:3.570000px;}
.ws6b{word-spacing:3.591000px;}
.wse0{word-spacing:3.648000px;}
.ws8f{word-spacing:3.654000px;}
.wsf1{word-spacing:3.705000px;}
.wsaa{word-spacing:3.717000px;}
.wsc5{word-spacing:3.723000px;}
.wsd{word-spacing:3.762000px;}
.ws24{word-spacing:3.780000px;}
.ws7{word-spacing:3.825000px;}
.ws3e{word-spacing:3.843000px;}
.wsef{word-spacing:3.876000px;}
.wsa0{word-spacing:3.906000px;}
.ws5e{word-spacing:3.969000px;}
.ws119{word-spacing:3.990000px;}
.ws5c{word-spacing:4.032000px;}
.ws11a{word-spacing:4.047000px;}
.ws8c{word-spacing:4.095000px;}
.wseb{word-spacing:4.104000px;}
.ws75{word-spacing:4.158000px;}
.ws28{word-spacing:4.221000px;}
.ws21{word-spacing:4.284000px;}
.ws89{word-spacing:4.347000px;}
.ws13{word-spacing:4.389000px;}
.ws80{word-spacing:4.410000px;}
.ws10{word-spacing:4.446000px;}
.ws6f{word-spacing:4.473000px;}
.ws4f{word-spacing:4.536000px;}
.wsa8{word-spacing:4.539000px;}
.ws110{word-spacing:4.560000px;}
.ws99{word-spacing:4.599000px;}
.wsfe{word-spacing:4.617000px;}
.ws67{word-spacing:4.662000px;}
.wsbf{word-spacing:4.725000px;}
.ws7e{word-spacing:4.743000px;}
.wsc3{word-spacing:4.788000px;}
.ws9e{word-spacing:4.845000px;}
.ws76{word-spacing:4.851000px;}
.ws86{word-spacing:4.914000px;}
.wsb6{word-spacing:4.977000px;}
.ws5d{word-spacing:5.040000px;}
.ws94{word-spacing:5.049000px;}
.wsec{word-spacing:5.073000px;}
.wscf{word-spacing:5.100000px;}
.wsb2{word-spacing:5.103000px;}
.ws55{word-spacing:5.166000px;}
.wsf4{word-spacing:5.187000px;}
.wsa1{word-spacing:5.229000px;}
.ws7b{word-spacing:5.292000px;}
.wsea{word-spacing:5.301000px;}
.wsd0{word-spacing:5.304000px;}
.wsa9{word-spacing:5.355000px;}
.ws36{word-spacing:5.406000px;}
.ws117{word-spacing:5.415000px;}
.ws50{word-spacing:5.418000px;}
.wsfa{word-spacing:5.472000px;}
.ws70{word-spacing:5.481000px;}
.wse5{word-spacing:5.529000px;}
.ws78{word-spacing:5.544000px;}
.wsb1{word-spacing:5.607000px;}
.ws10e{word-spacing:5.643000px;}
.ws77{word-spacing:5.670000px;}
.ws109{word-spacing:5.700000px;}
.ws35{word-spacing:5.712000px;}
.ws42{word-spacing:5.733000px;}
.ws112{word-spacing:5.757000px;}
.ws33{word-spacing:5.763000px;}
.ws90{word-spacing:5.796000px;}
.wsb8{word-spacing:5.814000px;}
.ws59{word-spacing:5.859000px;}
.ws11e{word-spacing:5.871000px;}
.ws6c{word-spacing:5.922000px;}
.wsfc{word-spacing:5.928000px;}
.ws82{word-spacing:5.985000px;}
.ws10c{word-spacing:6.042000px;}
.ws51{word-spacing:6.048000px;}
.wsdc{word-spacing:6.099000px;}
.ws6a{word-spacing:6.111000px;}
.wsff{word-spacing:6.156000px;}
.ws53{word-spacing:6.174000px;}
.ws103{word-spacing:6.213000px;}
.ws22{word-spacing:6.237000px;}
.ws100{word-spacing:6.270000px;}
.ws5b{word-spacing:6.300000px;}
.wsd6{word-spacing:6.327000px;}
.ws45{word-spacing:6.363000px;}
.ws11{word-spacing:6.384000px;}
.ws1f{word-spacing:6.426000px;}
.wsb{word-spacing:6.441000px;}
.ws29{word-spacing:6.489000px;}
.wsed{word-spacing:6.498000px;}
.ws47{word-spacing:6.552000px;}
.ws8{word-spacing:6.555000px;}
.ws116{word-spacing:6.612000px;}
.ws44{word-spacing:6.615000px;}
.ws4d{word-spacing:6.678000px;}
.wsf3{word-spacing:6.726000px;}
.ws61{word-spacing:6.741000px;}
.ws83{word-spacing:6.804000px;}
.ws10d{word-spacing:6.840000px;}
.ws49{word-spacing:6.867000px;}
.ws68{word-spacing:6.930000px;}
.ws3f{word-spacing:6.993000px;}
.ws71{word-spacing:7.056000px;}
.wsf2{word-spacing:7.068000px;}
.ws2e{word-spacing:7.119000px;}
.ws2a{word-spacing:7.182000px;}
.ws48{word-spacing:7.245000px;}
.ws4e{word-spacing:7.308000px;}
.ws4c{word-spacing:7.371000px;}
.wsd4{word-spacing:7.749000px;}
.wsc0{word-spacing:7.812000px;}
.ws10b{word-spacing:7.923000px;}
.ws2d{word-spacing:8.379000px;}
.ws11b{word-spacing:10.260000px;}
.wsbb{word-spacing:1191.742800px;}
.ws16{word-spacing:1217.122800px;}
._a{margin-left:-20.720700px;}
._7{margin-left:-18.883500px;}
._12{margin-left:-17.309700px;}
._6{margin-left:-15.924900px;}
._11{margin-left:-14.335200px;}
._b{margin-left:-13.266000px;}
._14{margin-left:-12.141000px;}
._8{margin-left:-9.105300px;}
._e{margin-left:-7.103286px;}
._9{margin-left:-6.011100px;}
._3{margin-left:-4.815600px;}
._4{margin-left:-3.329100px;}
._2{margin-left:-2.173500px;}
._0{margin-left:-1.125000px;}
._1{width:1.035000px;}
._5{width:2.182500px;}
._c{width:4.000500px;}
._d{width:5.701500px;}
._13{width:6.880500px;}
._f{width:8.165700px;}
._10{width:10.333500px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:81.000000px;}
.fs2{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y20f{bottom:126.074700px;}
.y299{bottom:128.439900px;}
.y280{bottom:128.487900px;}
.ye7{bottom:128.751150px;}
.y193{bottom:129.186150px;}
.y1cc{bottom:129.187650px;}
.y1d3{bottom:129.188400px;}
.yc5{bottom:129.189150px;}
.yff{bottom:129.189900px;}
.y1c4{bottom:129.433650px;}
.y40{bottom:130.249200px;}
.y7{bottom:130.465350px;}
.y11b{bottom:130.686150px;}
.y15c{bottom:130.689900px;}
.y179{bottom:130.932900px;}
.y83{bottom:130.936650px;}
.y14b{bottom:130.937400px;}
.ya2{bottom:131.242800px;}
.y170{bottom:131.682900px;}
.y1ef{bottom:131.686650px;}
.y1a2{bottom:131.687400px;}
.y61{bottom:133.187400px;}
.y235{bottom:139.816800px;}
.y20e{bottom:145.568700px;}
.ye6{bottom:146.001900px;}
.y1e0{bottom:146.436150px;}
.y192{bottom:146.436900px;}
.y1cb{bottom:146.438400px;}
.y1d2{bottom:146.439150px;}
.yc4{bottom:146.439900px;}
.y25a{bottom:146.577900px;}
.y3f{bottom:147.499950px;}
.y6{bottom:147.716100px;}
.y298{bottom:147.933900px;}
.y15b{bottom:147.936150px;}
.y11a{bottom:147.936900px;}
.y27f{bottom:147.981900px;}
.y1c3{bottom:151.184400px;}
.y178{bottom:152.683650px;}
.y175{bottom:152.685150px;}
.y14a{bottom:152.686650px;}
.y82{bottom:152.687400px;}
.ya1{bottom:152.993550px;}
.y16f{bottom:153.433650px;}
.y1a1{bottom:153.434400px;}
.y1ee{bottom:153.437400px;}
.y234{bottom:159.310800px;}
.y1df{bottom:163.686900px;}
.y191{bottom:163.687650px;}
.yc2{bottom:163.689150px;}
.yc3{bottom:163.689900px;}
.y3e{bottom:164.750700px;}
.y5{bottom:164.966850px;}
.y20d{bottom:165.062700px;}
.y15a{bottom:165.186900px;}
.y119{bottom:165.187650px;}
.y259{bottom:166.071900px;}
.y297{bottom:167.427900px;}
.y27e{bottom:167.475900px;}
.y1c2{bottom:172.935150px;}
.y188{bottom:174.433650px;}
.y177{bottom:174.434400px;}
.y174{bottom:174.435900px;}
.y81{bottom:174.436650px;}
.y149{bottom:174.437400px;}
.ya0{bottom:174.744300px;}
.y16e{bottom:175.184400px;}
.y1a0{bottom:175.185150px;}
.yfe{bottom:175.186650px;}
.y1ed{bottom:175.187400px;}
.y60{bottom:175.320150px;}
.y233{bottom:178.834800px;}
.y1de{bottom:180.937650px;}
.y190{bottom:180.938400px;}
.y1d1{bottom:180.939150px;}
.yc1{bottom:180.939900px;}
.y3d{bottom:182.001450px;}
.y159{bottom:182.437650px;}
.y118{bottom:182.438400px;}
.y20c{bottom:184.556700px;}
.y258{bottom:185.565900px;}
.y296{bottom:186.921900px;}
.y27d{bottom:186.969900px;}
.y4{bottom:188.592600px;}
.y1c1{bottom:194.685900px;}
.ye5{bottom:195.741150px;}
.y187{bottom:196.184400px;}
.y148{bottom:196.185150px;}
.y173{bottom:196.186650px;}
.y80{bottom:196.187400px;}
.y9f{bottom:196.495050px;}
.y1ec{bottom:196.932900px;}
.y16d{bottom:196.935150px;}
.y19f{bottom:196.935900px;}
.yfd{bottom:196.937400px;}
.y1dd{bottom:198.188400px;}
.y18f{bottom:198.189150px;}
.y1d0{bottom:198.189900px;}
.y232{bottom:198.328800px;}
.y3c{bottom:199.252200px;}
.y158{bottom:199.688400px;}
.y117{bottom:199.689150px;}
.y20b{bottom:204.062700px;}
.y257{bottom:205.059900px;}
.y3{bottom:205.843350px;}
.y295{bottom:206.427900px;}
.y27c{bottom:206.463900px;}
.y1dc{bottom:215.439150px;}
.y18e{bottom:215.439900px;}
.y1c0{bottom:216.436650px;}
.y3b{bottom:216.502950px;}
.y157{bottom:216.939150px;}
.y116{bottom:216.939900px;}
.ye4{bottom:217.491900px;}
.yc0{bottom:217.492950px;}
.y231{bottom:217.822800px;}
.y186{bottom:217.935150px;}
.y7f{bottom:217.935900px;}
.y172{bottom:217.937400px;}
.y9e{bottom:218.245800px;}
.y1eb{bottom:218.683650px;}
.y16c{bottom:218.685900px;}
.y19e{bottom:218.686650px;}
.yfc{bottom:218.687400px;}
.y20a{bottom:223.556700px;}
.y256{bottom:224.553900px;}
.y294{bottom:225.921900px;}
.y27b{bottom:225.957900px;}
.y1db{bottom:232.689900px;}
.y3a{bottom:233.752200px;}
.y156{bottom:234.189900px;}
.y230{bottom:237.316800px;}
.y1bf{bottom:238.187400px;}
.ye3{bottom:239.242650px;}
.ybf{bottom:239.243700px;}
.y171{bottom:239.683650px;}
.y185{bottom:239.685900px;}
.y7e{bottom:239.686650px;}
.y1ca{bottom:239.687400px;}
.y9d{bottom:239.996550px;}
.y1ea{bottom:240.434400px;}
.y16b{bottom:240.436650px;}
.y19d{bottom:240.437400px;}
.y5f{bottom:241.185150px;}
.y209{bottom:243.086700px;}
.y255{bottom:244.047900px;}
.y27a{bottom:245.451900px;}
.y1d9{bottom:249.939150px;}
.y1da{bottom:249.939900px;}
.y39{bottom:251.002950px;}
.y22f{bottom:256.810800px;}
.y1be{bottom:259.927650px;}
.yfb{bottom:260.820150px;}
.ye2{bottom:260.993400px;}
.ybe{bottom:260.994450px;}
.y134{bottom:261.434400px;}
.y115{bottom:261.435900px;}
.y184{bottom:261.436650px;}
.y7d{bottom:261.437400px;}
.y9c{bottom:261.747300px;}
.y19c{bottom:262.185150px;}
.y16a{bottom:262.187400px;}
.y208{bottom:262.580700px;}
.y5e{bottom:262.935900px;}
.y254{bottom:263.541900px;}
.y279{bottom:264.945900px;}
.y1d8{bottom:267.189900px;}
.y38{bottom:268.252950px;}
.y22e{bottom:276.322800px;}
.y1e{bottom:277.919850px;}
.y1bd{bottom:281.678400px;}
.y207{bottom:282.074700px;}
.ye1{bottom:282.744150px;}
.ybd{bottom:282.745200px;}
.y253{bottom:283.035900px;}
.y147{bottom:283.181400px;}
.y7c{bottom:283.184400px;}
.y133{bottom:283.185150px;}
.y114{bottom:283.186650px;}
.y183{bottom:283.187400px;}
.y9b{bottom:283.498050px;}
.y169{bottom:283.929150px;}
.y19b{bottom:283.935900px;}
.y1d7{bottom:284.437650px;}
.y278{bottom:284.439900px;}
.y5d{bottom:284.686650px;}
.y22d{bottom:295.816800px;}
.y1d{bottom:297.413850px;}
.y206{bottom:301.568700px;}
.y1d6{bottom:301.688400px;}
.y252{bottom:302.529900px;}
.y1bc{bottom:303.429150px;}
.y277{bottom:303.933900px;}
.ye0{bottom:304.494900px;}
.ybc{bottom:304.495950px;}
.y146{bottom:304.932150px;}
.y182{bottom:304.934400px;}
.y7b{bottom:304.935150px;}
.y132{bottom:304.935900px;}
.y113{bottom:304.937400px;}
.y9a{bottom:305.248800px;}
.y168{bottom:305.679900px;}
.y19a{bottom:305.686650px;}
.y5c{bottom:306.437400px;}
.y22c{bottom:315.310800px;}
.y1d5{bottom:318.939150px;}
.y205{bottom:321.062700px;}
.y251{bottom:322.023900px;}
.y276{bottom:323.427900px;}
.y1bb{bottom:325.179900px;}
.ydf{bottom:326.245650px;}
.ybb{bottom:326.246700px;}
.y18d{bottom:326.682150px;}
.y145{bottom:326.682900px;}
.y181{bottom:326.685150px;}
.y7a{bottom:326.685900px;}
.y131{bottom:326.686650px;}
.yfa{bottom:326.687400px;}
.y99{bottom:326.999550px;}
.y167{bottom:327.430650px;}
.y199{bottom:327.437400px;}
.y1c{bottom:327.538350px;}
.y5b{bottom:328.186650px;}
.y37{bottom:328.500450px;}
.y22b{bottom:334.876800px;}
.y1d4{bottom:336.189900px;}
.y204{bottom:340.556700px;}
.y250{bottom:341.517900px;}
.y275{bottom:342.921900px;}
.y1ba{bottom:346.930650px;}
.y1b{bottom:347.032350px;}
.yde{bottom:347.996400px;}
.yba{bottom:347.997450px;}
.y18c{bottom:348.432900px;}
.y144{bottom:348.433650px;}
.yf9{bottom:348.434400px;}
.y180{bottom:348.435900px;}
.y79{bottom:348.436650px;}
.y130{bottom:348.437400px;}
.y98{bottom:348.750300px;}
.y166{bottom:349.181400px;}
.y198{bottom:349.187400px;}
.y5a{bottom:349.937400px;}
.y36{bottom:350.249700px;}
.y22a{bottom:354.370800px;}
.y203{bottom:360.074700px;}
.y24f{bottom:361.011900px;}
.y274{bottom:362.427900px;}
.y293{bottom:362.571900px;}
.y1a{bottom:366.526350px;}
.y1b9{bottom:368.681400px;}
.ydd{bottom:369.747150px;}
.yb9{bottom:369.748200px;}
.y1c9{bottom:370.182900px;}
.y18b{bottom:370.183650px;}
.y143{bottom:370.184400px;}
.yf8{bottom:370.185150px;}
.y12f{bottom:370.185900px;}
.y17f{bottom:370.186650px;}
.y78{bottom:370.187400px;}
.y97{bottom:370.497300px;}
.y165{bottom:370.932150px;}
.y1e9{bottom:370.932900px;}
.y197{bottom:370.936650px;}
.y59{bottom:371.686650px;}
.y35{bottom:371.999700px;}
.y229{bottom:373.864800px;}
.y202{bottom:379.568700px;}
.y24e{bottom:380.505900px;}
.y273{bottom:381.921900px;}
.y292{bottom:382.065900px;}
.y19{bottom:386.020350px;}
.y1b8{bottom:390.432150px;}
.ydc{bottom:391.497900px;}
.yb8{bottom:391.498950px;}
.y77{bottom:391.926150px;}
.y1c8{bottom:391.933650px;}
.y18a{bottom:391.934400px;}
.y142{bottom:391.935150px;}
.yf7{bottom:391.935900px;}
.y12e{bottom:391.936650px;}
.y112{bottom:391.937400px;}
.y96{bottom:392.248050px;}
.y164{bottom:392.682900px;}
.y1e8{bottom:392.683650px;}
.y196{bottom:392.687400px;}
.y228{bottom:393.358800px;}
.y58{bottom:393.437400px;}
.y34{bottom:393.750450px;}
.y201{bottom:399.062700px;}
.y24d{bottom:399.999900px;}
.y272{bottom:401.439900px;}
.y291{bottom:401.559900px;}
.y18{bottom:405.526350px;}
.y1b7{bottom:412.182900px;}
.y227{bottom:412.852800px;}
.ydb{bottom:413.248650px;}
.yb7{bottom:413.249700px;}
.y76{bottom:413.676900px;}
.y176{bottom:413.679900px;}
.y111{bottom:413.684400px;}
.y189{bottom:413.685150px;}
.y141{bottom:413.685900px;}
.yf6{bottom:413.686650px;}
.y12d{bottom:413.687400px;}
.y95{bottom:413.998800px;}
.y163{bottom:414.433650px;}
.y1e7{bottom:414.434400px;}
.y195{bottom:414.437400px;}
.y57{bottom:415.185900px;}
.y33{bottom:415.499700px;}
.y200{bottom:418.556700px;}
.y24c{bottom:419.493900px;}
.y271{bottom:420.933900px;}
.y290{bottom:421.053900px;}
.y17{bottom:425.020350px;}
.y226{bottom:432.346800px;}
.y1b6{bottom:433.933650px;}
.yda{bottom:434.999400px;}
.yb6{bottom:435.000450px;}
.y75{bottom:435.427650px;}
.y155{bottom:435.430650px;}
.y110{bottom:435.435150px;}
.y12c{bottom:435.435900px;}
.y140{bottom:435.436650px;}
.yf5{bottom:435.437400px;}
.y94{bottom:435.749550px;}
.y162{bottom:436.184400px;}
.y1e6{bottom:436.185150px;}
.y56{bottom:436.936650px;}
.y32{bottom:437.250450px;}
.y24b{bottom:438.987900px;}
.y270{bottom:440.427900px;}
.y28f{bottom:440.547900px;}
.y16{bottom:444.532350px;}
.y225{bottom:451.840800px;}
.y1b5{bottom:455.684400px;}
.yd9{bottom:456.748650px;}
.yb5{bottom:456.749700px;}
.y74{bottom:457.178400px;}
.y154{bottom:457.181400px;}
.yf4{bottom:457.184400px;}
.y10f{bottom:457.185900px;}
.y12b{bottom:457.186650px;}
.y13f{bottom:457.187400px;}
.y93{bottom:457.500300px;}
.y161{bottom:457.935150px;}
.y1e5{bottom:457.935900px;}
.y24a{bottom:458.481900px;}
.y55{bottom:458.687400px;}
.y31{bottom:458.995200px;}
.y1ff{bottom:459.189450px;}
.y26f{bottom:459.921900px;}
.y28e{bottom:460.041900px;}
.y15{bottom:464.026350px;}
.y224{bottom:471.334800px;}
.y1b4{bottom:477.435150px;}
.y249{bottom:477.975900px;}
.yb4{bottom:478.495950px;}
.yd8{bottom:478.497900px;}
.y73{bottom:478.929150px;}
.y153{bottom:478.932150px;}
.yf3{bottom:478.935150px;}
.y10e{bottom:478.936650px;}
.y12a{bottom:478.937400px;}
.y26e{bottom:479.457900px;}
.y28d{bottom:479.535900px;}
.y160{bottom:479.685900px;}
.y1e4{bottom:479.686650px;}
.y54{bottom:480.437400px;}
.y30{bottom:480.745950px;}
.y14{bottom:483.520350px;}
.y223{bottom:490.828800px;}
.y248{bottom:497.469900px;}
.y26d{bottom:498.951900px;}
.y28c{bottom:499.029900px;}
.y1b3{bottom:499.185900px;}
.y92{bottom:499.633050px;}
.yb3{bottom:500.246700px;}
.yd7{bottom:500.248650px;}
.y72{bottom:500.679900px;}
.y152{bottom:500.682900px;}
.yf2{bottom:500.685900px;}
.y1cf{bottom:500.686650px;}
.y10d{bottom:500.687400px;}
.y15f{bottom:501.436650px;}
.y1e3{bottom:501.437400px;}
.y53{bottom:502.183650px;}
.y2f{bottom:502.496700px;}
.y13{bottom:503.050350px;}
.y222{bottom:510.322800px;}
.y247{bottom:516.963900px;}
.y26c{bottom:518.445900px;}
.y28b{bottom:518.523900px;}
.y1b2{bottom:520.936650px;}
.yb2{bottom:521.997450px;}
.yd6{bottom:521.999400px;}
.y71{bottom:522.430650px;}
.y129{bottom:522.431400px;}
.y151{bottom:522.433650px;}
.y17e{bottom:522.434400px;}
.y1c7{bottom:522.435150px;}
.yf1{bottom:522.436650px;}
.y10c{bottom:522.437400px;}
.y12{bottom:522.544350px;}
.y15e{bottom:523.187400px;}
.y52{bottom:523.934400px;}
.y2e{bottom:524.247450px;}
.y221{bottom:529.816800px;}
.y246{bottom:536.457900px;}
.y26b{bottom:537.939900px;}
.y28a{bottom:538.017900px;}
.y11{bottom:542.038350px;}
.y1b1{bottom:542.687400px;}
.yd5{bottom:543.747150px;}
.yb1{bottom:543.748200px;}
.y10b{bottom:544.180650px;}
.y70{bottom:544.181400px;}
.y128{bottom:544.182150px;}
.y150{bottom:544.184400px;}
.y17d{bottom:544.185150px;}
.y1c6{bottom:544.185900px;}
.y13e{bottom:544.186650px;}
.yf0{bottom:544.187400px;}
.y1fe{bottom:545.571450px;}
.y51{bottom:545.685150px;}
.y2d{bottom:545.998200px;}
.y220{bottom:549.310800px;}
.y245{bottom:555.951900px;}
.y26a{bottom:557.433900px;}
.y289{bottom:557.511900px;}
.y10{bottom:561.532350px;}
.y1b0{bottom:564.428400px;}
.y15d{bottom:565.320150px;}
.y91{bottom:565.497300px;}
.yd4{bottom:565.497900px;}
.yb0{bottom:565.498950px;}
.y10a{bottom:565.931400px;}
.y6f{bottom:565.932150px;}
.y127{bottom:565.932900px;}
.yef{bottom:565.935150px;}
.y17c{bottom:565.935900px;}
.y1c5{bottom:565.936650px;}
.y13d{bottom:565.937400px;}
.y1fd{bottom:567.322200px;}
.y50{bottom:567.435900px;}
.y2c{bottom:567.748950px;}
.y21f{bottom:568.876800px;}
.y244{bottom:575.445900px;}
.y269{bottom:576.927900px;}
.y288{bottom:577.005900px;}
.yf{bottom:581.026350px;}
.y1af{bottom:586.179150px;}
.y90{bottom:587.248050px;}
.yd3{bottom:587.248650px;}
.yaf{bottom:587.249700px;}
.y13c{bottom:587.678400px;}
.y109{bottom:587.682150px;}
.y6e{bottom:587.682900px;}
.y126{bottom:587.683650px;}
.yee{bottom:587.685900px;}
.y17b{bottom:587.686650px;}
.y21e{bottom:588.370800px;}
.y1fc{bottom:589.070700px;}
.y4f{bottom:589.186650px;}
.y2b{bottom:589.499700px;}
.y243{bottom:594.939900px;}
.y268{bottom:596.421900px;}
.y287{bottom:596.499900px;}
.ye{bottom:600.520350px;}
.y21d{bottom:607.864800px;}
.y1ae{bottom:607.929900px;}
.y8f{bottom:608.998800px;}
.yd2{bottom:608.999400px;}
.yae{bottom:609.000450px;}
.y13b{bottom:609.429150px;}
.y108{bottom:609.432900px;}
.y6d{bottom:609.433650px;}
.y125{bottom:609.434400px;}
.yed{bottom:609.436650px;}
.y17a{bottom:609.437400px;}
.y1fb{bottom:610.821450px;}
.y4e{bottom:610.937400px;}
.y2a{bottom:611.250450px;}
.y242{bottom:614.433900px;}
.y267{bottom:615.951900px;}
.y286{bottom:615.993900px;}
.yd{bottom:620.026350px;}
.y21c{bottom:627.358800px;}
.y1ad{bottom:629.680650px;}
.yd0{bottom:630.746400px;}
.yad{bottom:630.748950px;}
.yd1{bottom:630.749400px;}
.y8e{bottom:630.749550px;}
.y13a{bottom:631.179900px;}
.y107{bottom:631.183650px;}
.y6c{bottom:631.184400px;}
.y124{bottom:631.185150px;}
.y194{bottom:631.185900px;}
.y1e2{bottom:631.186650px;}
.yec{bottom:631.187400px;}
.y1fa{bottom:632.572200px;}
.y4d{bottom:632.687400px;}
.y29{bottom:632.996700px;}
.y241{bottom:633.927900px;}
.y266{bottom:635.445900px;}
.y285{bottom:635.487900px;}
.yc{bottom:639.520350px;}
.y21b{bottom:646.852800px;}
.y1ac{bottom:651.431400px;}
.ycf{bottom:652.497150px;}
.yac{bottom:652.499700px;}
.y8d{bottom:652.500300px;}
.y139{bottom:652.930650px;}
.y14f{bottom:652.933650px;}
.y106{bottom:652.934400px;}
.y6b{bottom:652.935150px;}
.y123{bottom:652.935900px;}
.yeb{bottom:652.936650px;}
.y1e1{bottom:652.937400px;}
.y240{bottom:653.421900px;}
.y1f9{bottom:654.320700px;}
.y4c{bottom:654.436650px;}
.y28{bottom:654.747450px;}
.y265{bottom:654.939900px;}
.y284{bottom:654.981900px;}
.y21a{bottom:666.346800px;}
.yb{bottom:669.033000px;}
.y23f{bottom:672.975900px;}
.y1ab{bottom:673.182150px;}
.y8c{bottom:674.245050px;}
.yce{bottom:674.247900px;}
.yab{bottom:674.250450px;}
.y264{bottom:674.433900px;}
.y283{bottom:674.475900px;}
.y138{bottom:674.681400px;}
.y14e{bottom:674.684400px;}
.y105{bottom:674.685150px;}
.y6a{bottom:674.685900px;}
.y122{bottom:674.686650px;}
.yea{bottom:674.687400px;}
.y1f8{bottom:676.071450px;}
.y4b{bottom:676.187400px;}
.y27{bottom:676.498200px;}
.y219{bottom:685.840800px;}
.y23e{bottom:692.469900px;}
.y29a{bottom:693.921900px;}
.y263{bottom:693.927900px;}
.y282{bottom:693.969900px;}
.y1aa{bottom:694.932900px;}
.y8b{bottom:695.995800px;}
.ycd{bottom:695.998650px;}
.yaa{bottom:695.999700px;}
.y137{bottom:696.432150px;}
.ye9{bottom:696.434400px;}
.y14d{bottom:696.435150px;}
.y104{bottom:696.435900px;}
.y69{bottom:696.436650px;}
.y121{bottom:696.437400px;}
.y1f7{bottom:697.822200px;}
.y4a{bottom:697.937400px;}
.y26{bottom:698.248950px;}
.y218{bottom:705.334800px;}
.y23d{bottom:711.963900px;}
.y262{bottom:713.421900px;}
.y281{bottom:713.463900px;}
.y1a9{bottom:716.683650px;}
.y8a{bottom:717.746550px;}
.ycc{bottom:717.749400px;}
.ya9{bottom:717.750450px;}
.y136{bottom:718.182900px;}
.ye8{bottom:718.185150px;}
.y120{bottom:718.185900px;}
.y103{bottom:718.186650px;}
.y68{bottom:718.187400px;}
.y1f6{bottom:719.570700px;}
.y49{bottom:719.687400px;}
.y25{bottom:719.999700px;}
.y217{bottom:724.828800px;}
.y23c{bottom:731.457900px;}
.y261{bottom:732.957900px;}
.y1a8{bottom:738.434400px;}
.y89{bottom:739.497300px;}
.ycb{bottom:739.499400px;}
.ya8{bottom:739.500450px;}
.y135{bottom:739.933650px;}
.y67{bottom:739.935900px;}
.y11f{bottom:739.936650px;}
.y102{bottom:739.937400px;}
.y1f5{bottom:741.321450px;}
.y48{bottom:741.433650px;}
.y24{bottom:741.750450px;}
.ya{bottom:743.085300px;}
.y216{bottom:744.322800px;}
.y23b{bottom:750.951900px;}
.y260{bottom:752.451900px;}
.y1a7{bottom:760.185150px;}
.yca{bottom:761.246400px;}
.y88{bottom:761.248050px;}
.ya7{bottom:761.250450px;}
.y101{bottom:761.684400px;}
.y14c{bottom:761.685900px;}
.y66{bottom:761.686650px;}
.y11e{bottom:761.687400px;}
.y1f4{bottom:763.072200px;}
.y47{bottom:763.184400px;}
.y23{bottom:763.498950px;}
.y215{bottom:763.816800px;}
.y23a{bottom:770.445900px;}
.y25f{bottom:771.945900px;}
.y1a6{bottom:781.935900px;}
.yc9{bottom:782.997150px;}
.y87{bottom:782.998800px;}
.ya6{bottom:782.999700px;}
.y214{bottom:783.310800px;}
.y100{bottom:783.435150px;}
.y11d{bottom:783.436650px;}
.y65{bottom:783.437400px;}
.y1f3{bottom:784.819950px;}
.y46{bottom:784.935150px;}
.y22{bottom:785.249700px;}
.y239{bottom:789.939900px;}
.y25e{bottom:791.439900px;}
.y213{bottom:802.828800px;}
.y1a5{bottom:803.686650px;}
.yc8{bottom:804.747900px;}
.y86{bottom:804.749550px;}
.ya5{bottom:804.750450px;}
.y64{bottom:805.185900px;}
.y1ce{bottom:805.186650px;}
.y11c{bottom:805.187400px;}
.y1f2{bottom:806.570700px;}
.y45{bottom:806.685900px;}
.y21{bottom:807.000450px;}
.y238{bottom:809.433900px;}
.y9{bottom:809.564550px;}
.y25d{bottom:810.933900px;}
.y212{bottom:822.322800px;}
.y1a4{bottom:825.437400px;}
.yc7{bottom:826.498650px;}
.ya4{bottom:826.499700px;}
.y85{bottom:826.500300px;}
.y63{bottom:826.936650px;}
.y1cd{bottom:826.937400px;}
.y1f1{bottom:828.321450px;}
.y44{bottom:828.436650px;}
.y237{bottom:828.927900px;}
.y25c{bottom:830.427900px;}
.y8{bottom:838.807650px;}
.y211{bottom:841.816800px;}
.y1a3{bottom:847.187400px;}
.yc6{bottom:848.249400px;}
.y84{bottom:848.250300px;}
.ya3{bottom:848.250450px;}
.y236{bottom:848.421900px;}
.y62{bottom:848.687400px;}
.y20{bottom:849.133200px;}
.y25b{bottom:849.921900px;}
.y1f0{bottom:850.072200px;}
.y43{bottom:850.187400px;}
.y210{bottom:861.310800px;}
.y42{bottom:902.450550px;}
.y2{bottom:902.488800px;}
.y41{bottom:902.508300px;}
.y1f{bottom:902.813100px;}
.y1{bottom:915.988800px;}
.h12{height:32.040000px;}
.h2{height:32.220000px;}
.h3{height:36.516000px;}
.h11{height:36.519000px;}
.h1f{height:36.525000px;}
.h1d{height:36.531000px;}
.h17{height:38.250000px;}
.ha{height:38.664000px;}
.h8{height:40.584000px;}
.h9{height:40.812000px;}
.h7{height:42.180000px;}
.hc{height:45.108000px;}
.h10{height:45.111000px;}
.hd{height:45.114000px;}
.h18{height:45.117000px;}
.h14{height:45.120000px;}
.he{height:45.123000px;}
.h15{height:45.126000px;}
.hf{height:45.129000px;}
.h1a{height:45.132000px;}
.h1c{height:45.135000px;}
.h16{height:45.138000px;}
.h19{height:45.141000px;}
.h1b{height:45.144000px;}
.h1e{height:45.147000px;}
.h13{height:45.153000px;}
.hb{height:46.398000px;}
.h6{height:49.749000px;}
.h4{height:70.290000px;}
.h5{height:75.336000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:667.500000px;}
.w0{width:667.558500px;}
.x0{left:0.000000px;}
.x4{left:91.854300px;}
.x2{left:93.170550px;}
.x3{left:101.671613px;}
.x6{left:111.826800px;}
.x9{left:113.333288px;}
.x5{left:121.184850px;}
.x8{left:122.684850px;}
.x1{left:344.012100px;}
.xa{left:463.210200px;}
.xb{left:483.801150px;}
.xd{left:557.521800px;}
.x7{left:563.866650px;}
.xc{left:574.518150px;}
@media print{
.v5{vertical-align:-12.320000pt;}
.v3{vertical-align:-1.153067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.392533pt;}
.v2{vertical-align:10.645333pt;}
.v4{vertical-align:12.338667pt;}
.ls85{letter-spacing:-7.752000pt;}
.ls13{letter-spacing:-6.104000pt;}
.ls80{letter-spacing:-5.472000pt;}
.ls5b{letter-spacing:-5.440000pt;}
.ls71{letter-spacing:-5.066667pt;}
.ls5d{letter-spacing:-4.986667pt;}
.ls6b{letter-spacing:-2.736000pt;}
.ls41{letter-spacing:-2.408000pt;}
.ls52{letter-spacing:-2.352000pt;}
.ls35{letter-spacing:-2.266667pt;}
.ls65{letter-spacing:-2.229333pt;}
.ls45{letter-spacing:-2.221333pt;}
.ls5{letter-spacing:-2.200000pt;}
.ls64{letter-spacing:-2.077333pt;}
.ls51{letter-spacing:-2.072000pt;}
.ls7b{letter-spacing:-1.976000pt;}
.ls50{letter-spacing:-1.960000pt;}
.ls7c{letter-spacing:-1.925333pt;}
.ls56{letter-spacing:-1.904000pt;}
.ls14{letter-spacing:-1.848000pt;}
.ls6{letter-spacing:-1.800000pt;}
.ls2f{letter-spacing:-1.792000pt;}
.ls48{letter-spacing:-1.736000pt;}
.ls67{letter-spacing:-1.722667pt;}
.ls1e{letter-spacing:-1.680000pt;}
.lsc{letter-spacing:-1.672000pt;}
.ls3e{letter-spacing:-1.624000pt;}
.ls6a{letter-spacing:-1.570667pt;}
.ls32{letter-spacing:-1.568000pt;}
.ls57{letter-spacing:-1.541333pt;}
.ls81{letter-spacing:-1.520000pt;}
.ls5a{letter-spacing:-1.512000pt;}
.ls84{letter-spacing:-1.418667pt;}
.ls12{letter-spacing:-1.400000pt;}
.ls1f{letter-spacing:-1.344000pt;}
.ls68{letter-spacing:-1.317333pt;}
.ls5f{letter-spacing:-1.288000pt;}
.ls36{letter-spacing:-1.269333pt;}
.lsb{letter-spacing:-1.266667pt;}
.ls21{letter-spacing:-1.232000pt;}
.ls70{letter-spacing:-1.216000pt;}
.ls22{letter-spacing:-1.176000pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-1.133333pt;}
.ls1b{letter-spacing:-1.120000pt;}
.ls62{letter-spacing:-1.114667pt;}
.ls27{letter-spacing:-1.064000pt;}
.ls3c{letter-spacing:-1.042667pt;}
.ls63{letter-spacing:-1.013333pt;}
.ls3b{letter-spacing:-1.008000pt;}
.ls6d{letter-spacing:-0.962667pt;}
.ls1c{letter-spacing:-0.952000pt;}
.ls73{letter-spacing:-0.912000pt;}
.ls43{letter-spacing:-0.906667pt;}
.ls40{letter-spacing:-0.896000pt;}
.ls78{letter-spacing:-0.861333pt;}
.ls11{letter-spacing:-0.840000pt;}
.ls3f{letter-spacing:-0.816000pt;}
.ls82{letter-spacing:-0.810667pt;}
.ls61{letter-spacing:-0.800000pt;}
.ls15{letter-spacing:-0.784000pt;}
.ls9{letter-spacing:-0.760000pt;}
.ls4b{letter-spacing:-0.746667pt;}
.ls29{letter-spacing:-0.728000pt;}
.ls58{letter-spacing:-0.709333pt;}
.ls2{letter-spacing:-0.680000pt;}
.ls20{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.658667pt;}
.ls17{letter-spacing:-0.634667pt;}
.ls1d{letter-spacing:-0.616000pt;}
.ls7{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls18{letter-spacing:-0.589333pt;}
.ls4e{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.560000pt;}
.ls6e{letter-spacing:-0.557333pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls77{letter-spacing:-0.506667pt;}
.ls42{letter-spacing:-0.504000pt;}
.ls53{letter-spacing:-0.485333pt;}
.ls0{letter-spacing:-0.480000pt;}
.ls76{letter-spacing:-0.456000pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls37{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.408000pt;}
.ls66{letter-spacing:-0.405333pt;}
.ls2b{letter-spacing:-0.392000pt;}
.ls7a{letter-spacing:-0.354667pt;}
.ls30{letter-spacing:-0.336000pt;}
.ls19{letter-spacing:-0.317333pt;}
.ls28{letter-spacing:-0.293333pt;}
.ls31{letter-spacing:-0.280000pt;}
.ls75{letter-spacing:-0.253333pt;}
.ls4c{letter-spacing:-0.226667pt;}
.ls2c{letter-spacing:-0.224000pt;}
.ls86{letter-spacing:-0.202667pt;}
.lsf{letter-spacing:-0.200000pt;}
.ls2e{letter-spacing:-0.168000pt;}
.ls2a{letter-spacing:-0.112000pt;}
.ls7e{letter-spacing:-0.101333pt;}
.ls1{letter-spacing:-0.080000pt;}
.ls26{letter-spacing:-0.056000pt;}
.ls72{letter-spacing:-0.050667pt;}
.ls5c{letter-spacing:-0.045333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.045333pt;}
.ls3a{letter-spacing:0.056000pt;}
.ls59{letter-spacing:0.074667pt;}
.ls79{letter-spacing:0.101333pt;}
.ls39{letter-spacing:0.112000pt;}
.ls74{letter-spacing:0.152000pt;}
.ls24{letter-spacing:0.168000pt;}
.ls4a{letter-spacing:0.181333pt;}
.lse{letter-spacing:0.200000pt;}
.ls83{letter-spacing:0.202667pt;}
.ls38{letter-spacing:0.224000pt;}
.ls4d{letter-spacing:0.226667pt;}
.ls47{letter-spacing:0.280000pt;}
.ls6c{letter-spacing:0.304000pt;}
.ls4f{letter-spacing:0.336000pt;}
.ls60{letter-spacing:0.392000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls7f{letter-spacing:0.456000pt;}
.ls46{letter-spacing:0.504000pt;}
.ls6f{letter-spacing:0.506667pt;}
.ls49{letter-spacing:0.560000pt;}
.ls33{letter-spacing:0.616000pt;}
.ls54{letter-spacing:0.680000pt;}
.ls25{letter-spacing:0.728000pt;}
.ls34{letter-spacing:0.840000pt;}
.ls55{letter-spacing:0.906667pt;}
.ls7d{letter-spacing:1.165333pt;}
.ls5e{letter-spacing:1.400000pt;}
.ls69{letter-spacing:3.698667pt;}
.ls1a{letter-spacing:5.264000pt;}
.ws39{word-spacing:-12.992000pt;}
.ws3a{word-spacing:-12.768000pt;}
.ws66{word-spacing:-12.437333pt;}
.wsd2{word-spacing:-12.320000pt;}
.wsbc{word-spacing:-12.144000pt;}
.wsd3{word-spacing:-12.040000pt;}
.ws108{word-spacing:-11.957333pt;}
.wsd1{word-spacing:-11.816000pt;}
.ws3b{word-spacing:-11.760000pt;}
.wsb0{word-spacing:-11.592000pt;}
.ws17{word-spacing:-11.557333pt;}
.ws38{word-spacing:-11.536000pt;}
.ws3c{word-spacing:-11.480000pt;}
.wsaf{word-spacing:-11.424000pt;}
.ws115{word-spacing:-11.298667pt;}
.ws73{word-spacing:-11.256000pt;}
.ws96{word-spacing:-11.200000pt;}
.wsae{word-spacing:-11.088000pt;}
.wse3{word-spacing:-11.045333pt;}
.ws1{word-spacing:-11.040000pt;}
.ws65{word-spacing:-11.032000pt;}
.wsf6{word-spacing:-10.842667pt;}
.wsd5{word-spacing:-10.773333pt;}
.ws3{word-spacing:-10.741333pt;}
.ws106{word-spacing:-10.640000pt;}
.wsf5{word-spacing:-10.488000pt;}
.wsbd{word-spacing:-10.472000pt;}
.ws9f{word-spacing:-10.416000pt;}
.wsb5{word-spacing:-10.336000pt;}
.wsb4{word-spacing:-10.154667pt;}
.wsa2{word-spacing:-9.882667pt;}
.ws1b{word-spacing:-9.701333pt;}
.ws107{word-spacing:-9.677333pt;}
.ws0{word-spacing:-9.610667pt;}
.ws98{word-spacing:-9.474667pt;}
.wsc2{word-spacing:-9.384000pt;}
.ws2{word-spacing:-9.322667pt;}
.ws1a{word-spacing:-9.248000pt;}
.ws8d{word-spacing:-9.157333pt;}
.ws74{word-spacing:-9.112000pt;}
.ws11d{word-spacing:-8.866667pt;}
.wscb{word-spacing:-8.549333pt;}
.ws18{word-spacing:-8.474667pt;}
.ws97{word-spacing:-8.362667pt;}
.wsa3{word-spacing:-8.069333pt;}
.wsbe{word-spacing:-7.989333pt;}
.ws95{word-spacing:-7.914667pt;}
.wsca{word-spacing:-7.765333pt;}
.wsc9{word-spacing:-7.728000pt;}
.ws19{word-spacing:-6.608000pt;}
.wse4{word-spacing:-6.434667pt;}
.wscd{word-spacing:-5.394667pt;}
.wscc{word-spacing:-4.941333pt;}
.wsc8{word-spacing:-0.906667pt;}
.wsc7{word-spacing:-0.680000pt;}
.wsba{word-spacing:-0.226667pt;}
.ws1c{word-spacing:-0.200000pt;}
.ws93{word-spacing:-0.045333pt;}
.ws5{word-spacing:0.000000pt;}
.ws111{word-spacing:0.050667pt;}
.ws2c{word-spacing:0.056000pt;}
.ws114{word-spacing:0.101333pt;}
.ws84{word-spacing:0.112000pt;}
.wsfb{word-spacing:0.152000pt;}
.ws72{word-spacing:0.168000pt;}
.ws1d{word-spacing:0.200000pt;}
.ws105{word-spacing:0.202667pt;}
.ws1e{word-spacing:0.224000pt;}
.wse{word-spacing:0.253333pt;}
.ws81{word-spacing:0.280000pt;}
.ws2b{word-spacing:0.336000pt;}
.ws10a{word-spacing:0.354667pt;}
.ws92{word-spacing:0.392000pt;}
.ws4{word-spacing:0.400000pt;}
.ws87{word-spacing:0.448000pt;}
.ws101{word-spacing:0.456000pt;}
.ws3d{word-spacing:0.480000pt;}
.wsa6{word-spacing:0.498667pt;}
.ws88{word-spacing:0.504000pt;}
.wse9{word-spacing:0.506667pt;}
.wsde{word-spacing:0.557333pt;}
.ws9a{word-spacing:0.560000pt;}
.wse1{word-spacing:0.608000pt;}
.ws43{word-spacing:0.616000pt;}
.ws9{word-spacing:0.658667pt;}
.ws4b{word-spacing:0.672000pt;}
.ws34{word-spacing:0.680000pt;}
.wsdf{word-spacing:0.709333pt;}
.ws32{word-spacing:0.725333pt;}
.ws5f{word-spacing:0.728000pt;}
.wsb7{word-spacing:0.746667pt;}
.wse2{word-spacing:0.760000pt;}
.ws7d{word-spacing:0.770667pt;}
.ws41{word-spacing:0.784000pt;}
.wsa{word-spacing:0.810667pt;}
.ws27{word-spacing:0.840000pt;}
.wsf{word-spacing:0.861333pt;}
.ws64{word-spacing:0.896000pt;}
.wsc1{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.952000pt;}
.ws10f{word-spacing:0.962667pt;}
.ws7c{word-spacing:1.008000pt;}
.ws113{word-spacing:1.013333pt;}
.wsa7{word-spacing:1.042667pt;}
.ws7a{word-spacing:1.064000pt;}
.wsb9{word-spacing:1.088000pt;}
.wsd7{word-spacing:1.114667pt;}
.ws4a{word-spacing:1.120000pt;}
.wsf7{word-spacing:1.165333pt;}
.wsab{word-spacing:1.176000pt;}
.wsf8{word-spacing:1.216000pt;}
.wsa4{word-spacing:1.232000pt;}
.ws11c{word-spacing:1.266667pt;}
.ws23{word-spacing:1.288000pt;}
.ws9c{word-spacing:1.344000pt;}
.wse8{word-spacing:1.368000pt;}
.ws8b{word-spacing:1.400000pt;}
.wsfd{word-spacing:1.418667pt;}
.ws69{word-spacing:1.456000pt;}
.ws91{word-spacing:1.512000pt;}
.wsda{word-spacing:1.520000pt;}
.wsad{word-spacing:1.568000pt;}
.wse6{word-spacing:1.570667pt;}
.ws52{word-spacing:1.624000pt;}
.ws37{word-spacing:1.677333pt;}
.ws6d{word-spacing:1.680000pt;}
.wsdd{word-spacing:1.722667pt;}
.wsb3{word-spacing:1.736000pt;}
.wsf0{word-spacing:1.773333pt;}
.ws62{word-spacing:1.792000pt;}
.ws20{word-spacing:1.848000pt;}
.ws63{word-spacing:1.904000pt;}
.ws6e{word-spacing:1.960000pt;}
.ws58{word-spacing:2.016000pt;}
.wsdb{word-spacing:2.077333pt;}
.ws9b{word-spacing:2.128000pt;}
.wse7{word-spacing:2.178667pt;}
.ws8e{word-spacing:2.184000pt;}
.ws14{word-spacing:2.229333pt;}
.ws57{word-spacing:2.240000pt;}
.ws7f{word-spacing:2.266667pt;}
.ws104{word-spacing:2.280000pt;}
.ws85{word-spacing:2.296000pt;}
.ws60{word-spacing:2.352000pt;}
.ws12{word-spacing:2.381333pt;}
.ws79{word-spacing:2.408000pt;}
.ws15{word-spacing:2.432000pt;}
.wsc6{word-spacing:2.448000pt;}
.ws46{word-spacing:2.464000pt;}
.ws30{word-spacing:2.520000pt;}
.ws8a{word-spacing:2.576000pt;}
.wsac{word-spacing:2.632000pt;}
.wsd8{word-spacing:2.634667pt;}
.wsd9{word-spacing:2.685333pt;}
.ws40{word-spacing:2.688000pt;}
.ws26{word-spacing:2.744000pt;}
.wsf9{word-spacing:2.786667pt;}
.ws5a{word-spacing:2.800000pt;}
.ws118{word-spacing:2.837333pt;}
.wsa5{word-spacing:2.856000pt;}
.wsee{word-spacing:2.888000pt;}
.wsce{word-spacing:2.901333pt;}
.ws56{word-spacing:2.912000pt;}
.ws102{word-spacing:2.938667pt;}
.ws54{word-spacing:2.968000pt;}
.ws2f{word-spacing:3.024000pt;}
.ws31{word-spacing:3.080000pt;}
.ws6{word-spacing:3.128000pt;}
.ws25{word-spacing:3.136000pt;}
.wsc{word-spacing:3.141333pt;}
.ws9d{word-spacing:3.173333pt;}
.ws6b{word-spacing:3.192000pt;}
.wse0{word-spacing:3.242667pt;}
.ws8f{word-spacing:3.248000pt;}
.wsf1{word-spacing:3.293333pt;}
.wsaa{word-spacing:3.304000pt;}
.wsc5{word-spacing:3.309333pt;}
.wsd{word-spacing:3.344000pt;}
.ws24{word-spacing:3.360000pt;}
.ws7{word-spacing:3.400000pt;}
.ws3e{word-spacing:3.416000pt;}
.wsef{word-spacing:3.445333pt;}
.wsa0{word-spacing:3.472000pt;}
.ws5e{word-spacing:3.528000pt;}
.ws119{word-spacing:3.546667pt;}
.ws5c{word-spacing:3.584000pt;}
.ws11a{word-spacing:3.597333pt;}
.ws8c{word-spacing:3.640000pt;}
.wseb{word-spacing:3.648000pt;}
.ws75{word-spacing:3.696000pt;}
.ws28{word-spacing:3.752000pt;}
.ws21{word-spacing:3.808000pt;}
.ws89{word-spacing:3.864000pt;}
.ws13{word-spacing:3.901333pt;}
.ws80{word-spacing:3.920000pt;}
.ws10{word-spacing:3.952000pt;}
.ws6f{word-spacing:3.976000pt;}
.ws4f{word-spacing:4.032000pt;}
.wsa8{word-spacing:4.034667pt;}
.ws110{word-spacing:4.053333pt;}
.ws99{word-spacing:4.088000pt;}
.wsfe{word-spacing:4.104000pt;}
.ws67{word-spacing:4.144000pt;}
.wsbf{word-spacing:4.200000pt;}
.ws7e{word-spacing:4.216000pt;}
.wsc3{word-spacing:4.256000pt;}
.ws9e{word-spacing:4.306667pt;}
.ws76{word-spacing:4.312000pt;}
.ws86{word-spacing:4.368000pt;}
.wsb6{word-spacing:4.424000pt;}
.ws5d{word-spacing:4.480000pt;}
.ws94{word-spacing:4.488000pt;}
.wsec{word-spacing:4.509333pt;}
.wscf{word-spacing:4.533333pt;}
.wsb2{word-spacing:4.536000pt;}
.ws55{word-spacing:4.592000pt;}
.wsf4{word-spacing:4.610667pt;}
.wsa1{word-spacing:4.648000pt;}
.ws7b{word-spacing:4.704000pt;}
.wsea{word-spacing:4.712000pt;}
.wsd0{word-spacing:4.714667pt;}
.wsa9{word-spacing:4.760000pt;}
.ws36{word-spacing:4.805333pt;}
.ws117{word-spacing:4.813333pt;}
.ws50{word-spacing:4.816000pt;}
.wsfa{word-spacing:4.864000pt;}
.ws70{word-spacing:4.872000pt;}
.wse5{word-spacing:4.914667pt;}
.ws78{word-spacing:4.928000pt;}
.wsb1{word-spacing:4.984000pt;}
.ws10e{word-spacing:5.016000pt;}
.ws77{word-spacing:5.040000pt;}
.ws109{word-spacing:5.066667pt;}
.ws35{word-spacing:5.077333pt;}
.ws42{word-spacing:5.096000pt;}
.ws112{word-spacing:5.117333pt;}
.ws33{word-spacing:5.122667pt;}
.ws90{word-spacing:5.152000pt;}
.wsb8{word-spacing:5.168000pt;}
.ws59{word-spacing:5.208000pt;}
.ws11e{word-spacing:5.218667pt;}
.ws6c{word-spacing:5.264000pt;}
.wsfc{word-spacing:5.269333pt;}
.ws82{word-spacing:5.320000pt;}
.ws10c{word-spacing:5.370667pt;}
.ws51{word-spacing:5.376000pt;}
.wsdc{word-spacing:5.421333pt;}
.ws6a{word-spacing:5.432000pt;}
.wsff{word-spacing:5.472000pt;}
.ws53{word-spacing:5.488000pt;}
.ws103{word-spacing:5.522667pt;}
.ws22{word-spacing:5.544000pt;}
.ws100{word-spacing:5.573333pt;}
.ws5b{word-spacing:5.600000pt;}
.wsd6{word-spacing:5.624000pt;}
.ws45{word-spacing:5.656000pt;}
.ws11{word-spacing:5.674667pt;}
.ws1f{word-spacing:5.712000pt;}
.wsb{word-spacing:5.725333pt;}
.ws29{word-spacing:5.768000pt;}
.wsed{word-spacing:5.776000pt;}
.ws47{word-spacing:5.824000pt;}
.ws8{word-spacing:5.826667pt;}
.ws116{word-spacing:5.877333pt;}
.ws44{word-spacing:5.880000pt;}
.ws4d{word-spacing:5.936000pt;}
.wsf3{word-spacing:5.978667pt;}
.ws61{word-spacing:5.992000pt;}
.ws83{word-spacing:6.048000pt;}
.ws10d{word-spacing:6.080000pt;}
.ws49{word-spacing:6.104000pt;}
.ws68{word-spacing:6.160000pt;}
.ws3f{word-spacing:6.216000pt;}
.ws71{word-spacing:6.272000pt;}
.wsf2{word-spacing:6.282667pt;}
.ws2e{word-spacing:6.328000pt;}
.ws2a{word-spacing:6.384000pt;}
.ws48{word-spacing:6.440000pt;}
.ws4e{word-spacing:6.496000pt;}
.ws4c{word-spacing:6.552000pt;}
.wsd4{word-spacing:6.888000pt;}
.wsc0{word-spacing:6.944000pt;}
.ws10b{word-spacing:7.042667pt;}
.ws2d{word-spacing:7.448000pt;}
.ws11b{word-spacing:9.120000pt;}
.wsbb{word-spacing:1059.326933pt;}
.ws16{word-spacing:1081.886933pt;}
._a{margin-left:-18.418400pt;}
._7{margin-left:-16.785333pt;}
._12{margin-left:-15.386400pt;}
._6{margin-left:-14.155467pt;}
._11{margin-left:-12.742400pt;}
._b{margin-left:-11.792000pt;}
._14{margin-left:-10.792000pt;}
._8{margin-left:-8.093600pt;}
._e{margin-left:-6.314032pt;}
._9{margin-left:-5.343200pt;}
._3{margin-left:-4.280533pt;}
._4{margin-left:-2.959200pt;}
._2{margin-left:-1.932000pt;}
._0{margin-left:-1.000000pt;}
._1{width:0.920000pt;}
._5{width:1.940000pt;}
._c{width:3.556000pt;}
._d{width:5.068000pt;}
._13{width:6.116000pt;}
._f{width:7.258400pt;}
._10{width:9.185333pt;}
.fsb{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:72.000000pt;}
.fs2{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y20f{bottom:112.066400pt;}
.y299{bottom:114.168800pt;}
.y280{bottom:114.211467pt;}
.ye7{bottom:114.445467pt;}
.y193{bottom:114.832133pt;}
.y1cc{bottom:114.833467pt;}
.y1d3{bottom:114.834133pt;}
.yc5{bottom:114.834800pt;}
.yff{bottom:114.835467pt;}
.y1c4{bottom:115.052133pt;}
.y40{bottom:115.777067pt;}
.y7{bottom:115.969200pt;}
.y11b{bottom:116.165467pt;}
.y15c{bottom:116.168800pt;}
.y179{bottom:116.384800pt;}
.y83{bottom:116.388133pt;}
.y14b{bottom:116.388800pt;}
.ya2{bottom:116.660267pt;}
.y170{bottom:117.051467pt;}
.y1ef{bottom:117.054800pt;}
.y1a2{bottom:117.055467pt;}
.y61{bottom:118.388800pt;}
.y235{bottom:124.281600pt;}
.y20e{bottom:129.394400pt;}
.ye6{bottom:129.779467pt;}
.y1e0{bottom:130.165467pt;}
.y192{bottom:130.166133pt;}
.y1cb{bottom:130.167467pt;}
.y1d2{bottom:130.168133pt;}
.yc4{bottom:130.168800pt;}
.y25a{bottom:130.291467pt;}
.y3f{bottom:131.111067pt;}
.y6{bottom:131.303200pt;}
.y298{bottom:131.496800pt;}
.y15b{bottom:131.498800pt;}
.y11a{bottom:131.499467pt;}
.y27f{bottom:131.539467pt;}
.y1c3{bottom:134.386133pt;}
.y178{bottom:135.718800pt;}
.y175{bottom:135.720133pt;}
.y14a{bottom:135.721467pt;}
.y82{bottom:135.722133pt;}
.ya1{bottom:135.994267pt;}
.y16f{bottom:136.385467pt;}
.y1a1{bottom:136.386133pt;}
.y1ee{bottom:136.388800pt;}
.y234{bottom:141.609600pt;}
.y1df{bottom:145.499467pt;}
.y191{bottom:145.500133pt;}
.yc2{bottom:145.501467pt;}
.yc3{bottom:145.502133pt;}
.y3e{bottom:146.445067pt;}
.y5{bottom:146.637200pt;}
.y20d{bottom:146.722400pt;}
.y15a{bottom:146.832800pt;}
.y119{bottom:146.833467pt;}
.y259{bottom:147.619467pt;}
.y297{bottom:148.824800pt;}
.y27e{bottom:148.867467pt;}
.y1c2{bottom:153.720133pt;}
.y188{bottom:155.052133pt;}
.y177{bottom:155.052800pt;}
.y174{bottom:155.054133pt;}
.y81{bottom:155.054800pt;}
.y149{bottom:155.055467pt;}
.ya0{bottom:155.328267pt;}
.y16e{bottom:155.719467pt;}
.y1a0{bottom:155.720133pt;}
.yfe{bottom:155.721467pt;}
.y1ed{bottom:155.722133pt;}
.y60{bottom:155.840133pt;}
.y233{bottom:158.964267pt;}
.y1de{bottom:160.833467pt;}
.y190{bottom:160.834133pt;}
.y1d1{bottom:160.834800pt;}
.yc1{bottom:160.835467pt;}
.y3d{bottom:161.779067pt;}
.y159{bottom:162.166800pt;}
.y118{bottom:162.167467pt;}
.y20c{bottom:164.050400pt;}
.y258{bottom:164.947467pt;}
.y296{bottom:166.152800pt;}
.y27d{bottom:166.195467pt;}
.y4{bottom:167.637867pt;}
.y1c1{bottom:173.054133pt;}
.ye5{bottom:173.992133pt;}
.y187{bottom:174.386133pt;}
.y148{bottom:174.386800pt;}
.y173{bottom:174.388133pt;}
.y80{bottom:174.388800pt;}
.y9f{bottom:174.662267pt;}
.y1ec{bottom:175.051467pt;}
.y16d{bottom:175.053467pt;}
.y19f{bottom:175.054133pt;}
.yfd{bottom:175.055467pt;}
.y1dd{bottom:176.167467pt;}
.y18f{bottom:176.168133pt;}
.y1d0{bottom:176.168800pt;}
.y232{bottom:176.292267pt;}
.y3c{bottom:177.113067pt;}
.y158{bottom:177.500800pt;}
.y117{bottom:177.501467pt;}
.y20b{bottom:181.389067pt;}
.y257{bottom:182.275467pt;}
.y3{bottom:182.971867pt;}
.y295{bottom:183.491467pt;}
.y27c{bottom:183.523467pt;}
.y1dc{bottom:191.501467pt;}
.y18e{bottom:191.502133pt;}
.y1c0{bottom:192.388133pt;}
.y3b{bottom:192.447067pt;}
.y157{bottom:192.834800pt;}
.y116{bottom:192.835467pt;}
.ye4{bottom:193.326133pt;}
.yc0{bottom:193.327067pt;}
.y231{bottom:193.620267pt;}
.y186{bottom:193.720133pt;}
.y7f{bottom:193.720800pt;}
.y172{bottom:193.722133pt;}
.y9e{bottom:193.996267pt;}
.y1eb{bottom:194.385467pt;}
.y16c{bottom:194.387467pt;}
.y19e{bottom:194.388133pt;}
.yfc{bottom:194.388800pt;}
.y20a{bottom:198.717067pt;}
.y256{bottom:199.603467pt;}
.y294{bottom:200.819467pt;}
.y27b{bottom:200.851467pt;}
.y1db{bottom:206.835467pt;}
.y3a{bottom:207.779733pt;}
.y156{bottom:208.168800pt;}
.y230{bottom:210.948267pt;}
.y1bf{bottom:211.722133pt;}
.ye3{bottom:212.660133pt;}
.ybf{bottom:212.661067pt;}
.y171{bottom:213.052133pt;}
.y185{bottom:213.054133pt;}
.y7e{bottom:213.054800pt;}
.y1ca{bottom:213.055467pt;}
.y9d{bottom:213.330267pt;}
.y1ea{bottom:213.719467pt;}
.y16b{bottom:213.721467pt;}
.y19d{bottom:213.722133pt;}
.y5f{bottom:214.386800pt;}
.y209{bottom:216.077067pt;}
.y255{bottom:216.931467pt;}
.y27a{bottom:218.179467pt;}
.y1d9{bottom:222.168133pt;}
.y1da{bottom:222.168800pt;}
.y39{bottom:223.113733pt;}
.y22f{bottom:228.276267pt;}
.y1be{bottom:231.046800pt;}
.yfb{bottom:231.840133pt;}
.ye2{bottom:231.994133pt;}
.ybe{bottom:231.995067pt;}
.y134{bottom:232.386133pt;}
.y115{bottom:232.387467pt;}
.y184{bottom:232.388133pt;}
.y7d{bottom:232.388800pt;}
.y9c{bottom:232.664267pt;}
.y19c{bottom:233.053467pt;}
.y16a{bottom:233.055467pt;}
.y208{bottom:233.405067pt;}
.y5e{bottom:233.720800pt;}
.y254{bottom:234.259467pt;}
.y279{bottom:235.507467pt;}
.y1d8{bottom:237.502133pt;}
.y38{bottom:238.447067pt;}
.y22e{bottom:245.620267pt;}
.y1e{bottom:247.039867pt;}
.y1bd{bottom:250.380800pt;}
.y207{bottom:250.733067pt;}
.ye1{bottom:251.328133pt;}
.ybd{bottom:251.329067pt;}
.y253{bottom:251.587467pt;}
.y147{bottom:251.716800pt;}
.y7c{bottom:251.719467pt;}
.y133{bottom:251.720133pt;}
.y114{bottom:251.721467pt;}
.y183{bottom:251.722133pt;}
.y9b{bottom:251.998267pt;}
.y169{bottom:252.381467pt;}
.y19b{bottom:252.387467pt;}
.y1d7{bottom:252.833467pt;}
.y278{bottom:252.835467pt;}
.y5d{bottom:253.054800pt;}
.y22d{bottom:262.948267pt;}
.y1d{bottom:264.367867pt;}
.y206{bottom:268.061067pt;}
.y1d6{bottom:268.167467pt;}
.y252{bottom:268.915467pt;}
.y1bc{bottom:269.714800pt;}
.y277{bottom:270.163467pt;}
.ye0{bottom:270.662133pt;}
.ybc{bottom:270.663067pt;}
.y146{bottom:271.050800pt;}
.y182{bottom:271.052800pt;}
.y7b{bottom:271.053467pt;}
.y132{bottom:271.054133pt;}
.y113{bottom:271.055467pt;}
.y9a{bottom:271.332267pt;}
.y168{bottom:271.715467pt;}
.y19a{bottom:271.721467pt;}
.y5c{bottom:272.388800pt;}
.y22c{bottom:280.276267pt;}
.y1d5{bottom:283.501467pt;}
.y205{bottom:285.389067pt;}
.y251{bottom:286.243467pt;}
.y276{bottom:287.491467pt;}
.y1bb{bottom:289.048800pt;}
.ydf{bottom:289.996133pt;}
.ybb{bottom:289.997067pt;}
.y18d{bottom:290.384133pt;}
.y145{bottom:290.384800pt;}
.y181{bottom:290.386800pt;}
.y7a{bottom:290.387467pt;}
.y131{bottom:290.388133pt;}
.yfa{bottom:290.388800pt;}
.y99{bottom:290.666267pt;}
.y167{bottom:291.049467pt;}
.y199{bottom:291.055467pt;}
.y1c{bottom:291.145200pt;}
.y5b{bottom:291.721467pt;}
.y37{bottom:292.000400pt;}
.y22b{bottom:297.668267pt;}
.y1d4{bottom:298.835467pt;}
.y204{bottom:302.717067pt;}
.y250{bottom:303.571467pt;}
.y275{bottom:304.819467pt;}
.y1ba{bottom:308.382800pt;}
.y1b{bottom:308.473200pt;}
.yde{bottom:309.330133pt;}
.yba{bottom:309.331067pt;}
.y18c{bottom:309.718133pt;}
.y144{bottom:309.718800pt;}
.yf9{bottom:309.719467pt;}
.y180{bottom:309.720800pt;}
.y79{bottom:309.721467pt;}
.y130{bottom:309.722133pt;}
.y98{bottom:310.000267pt;}
.y166{bottom:310.383467pt;}
.y198{bottom:310.388800pt;}
.y5a{bottom:311.055467pt;}
.y36{bottom:311.333067pt;}
.y22a{bottom:314.996267pt;}
.y203{bottom:320.066400pt;}
.y24f{bottom:320.899467pt;}
.y274{bottom:322.158133pt;}
.y293{bottom:322.286133pt;}
.y1a{bottom:325.801200pt;}
.y1b9{bottom:327.716800pt;}
.ydd{bottom:328.664133pt;}
.yb9{bottom:328.665067pt;}
.y1c9{bottom:329.051467pt;}
.y18b{bottom:329.052133pt;}
.y143{bottom:329.052800pt;}
.yf8{bottom:329.053467pt;}
.y12f{bottom:329.054133pt;}
.y17f{bottom:329.054800pt;}
.y78{bottom:329.055467pt;}
.y97{bottom:329.330933pt;}
.y165{bottom:329.717467pt;}
.y1e9{bottom:329.718133pt;}
.y197{bottom:329.721467pt;}
.y59{bottom:330.388133pt;}
.y35{bottom:330.666400pt;}
.y229{bottom:332.324267pt;}
.y202{bottom:337.394400pt;}
.y24e{bottom:338.227467pt;}
.y273{bottom:339.486133pt;}
.y292{bottom:339.614133pt;}
.y19{bottom:343.129200pt;}
.y1b8{bottom:347.050800pt;}
.ydc{bottom:347.998133pt;}
.yb8{bottom:347.999067pt;}
.y77{bottom:348.378800pt;}
.y1c8{bottom:348.385467pt;}
.y18a{bottom:348.386133pt;}
.y142{bottom:348.386800pt;}
.yf7{bottom:348.387467pt;}
.y12e{bottom:348.388133pt;}
.y112{bottom:348.388800pt;}
.y96{bottom:348.664933pt;}
.y164{bottom:349.051467pt;}
.y1e8{bottom:349.052133pt;}
.y196{bottom:349.055467pt;}
.y228{bottom:349.652267pt;}
.y58{bottom:349.722133pt;}
.y34{bottom:350.000400pt;}
.y201{bottom:354.722400pt;}
.y24d{bottom:355.555467pt;}
.y272{bottom:356.835467pt;}
.y291{bottom:356.942133pt;}
.y18{bottom:360.467867pt;}
.y1b7{bottom:366.384800pt;}
.y227{bottom:366.980267pt;}
.ydb{bottom:367.332133pt;}
.yb7{bottom:367.333067pt;}
.y76{bottom:367.712800pt;}
.y176{bottom:367.715467pt;}
.y111{bottom:367.719467pt;}
.y189{bottom:367.720133pt;}
.y141{bottom:367.720800pt;}
.yf6{bottom:367.721467pt;}
.y12d{bottom:367.722133pt;}
.y95{bottom:367.998933pt;}
.y163{bottom:368.385467pt;}
.y1e7{bottom:368.386133pt;}
.y195{bottom:368.388800pt;}
.y57{bottom:369.054133pt;}
.y33{bottom:369.333067pt;}
.y200{bottom:372.050400pt;}
.y24c{bottom:372.883467pt;}
.y271{bottom:374.163467pt;}
.y290{bottom:374.270133pt;}
.y17{bottom:377.795867pt;}
.y226{bottom:384.308267pt;}
.y1b6{bottom:385.718800pt;}
.yda{bottom:386.666133pt;}
.yb6{bottom:386.667067pt;}
.y75{bottom:387.046800pt;}
.y155{bottom:387.049467pt;}
.y110{bottom:387.053467pt;}
.y12c{bottom:387.054133pt;}
.y140{bottom:387.054800pt;}
.yf5{bottom:387.055467pt;}
.y94{bottom:387.332933pt;}
.y162{bottom:387.719467pt;}
.y1e6{bottom:387.720133pt;}
.y56{bottom:388.388133pt;}
.y32{bottom:388.667067pt;}
.y24b{bottom:390.211467pt;}
.y270{bottom:391.491467pt;}
.y28f{bottom:391.598133pt;}
.y16{bottom:395.139867pt;}
.y225{bottom:401.636267pt;}
.y1b5{bottom:405.052800pt;}
.yd9{bottom:405.998800pt;}
.yb5{bottom:405.999733pt;}
.y74{bottom:406.380800pt;}
.y154{bottom:406.383467pt;}
.yf4{bottom:406.386133pt;}
.y10f{bottom:406.387467pt;}
.y12b{bottom:406.388133pt;}
.y13f{bottom:406.388800pt;}
.y93{bottom:406.666933pt;}
.y161{bottom:407.053467pt;}
.y1e5{bottom:407.054133pt;}
.y24a{bottom:407.539467pt;}
.y55{bottom:407.722133pt;}
.y31{bottom:407.995733pt;}
.y1ff{bottom:408.168400pt;}
.y26f{bottom:408.819467pt;}
.y28e{bottom:408.926133pt;}
.y15{bottom:412.467867pt;}
.y224{bottom:418.964267pt;}
.y1b4{bottom:424.386800pt;}
.y249{bottom:424.867467pt;}
.yb4{bottom:425.329733pt;}
.yd8{bottom:425.331467pt;}
.y73{bottom:425.714800pt;}
.y153{bottom:425.717467pt;}
.yf3{bottom:425.720133pt;}
.y10e{bottom:425.721467pt;}
.y12a{bottom:425.722133pt;}
.y26e{bottom:426.184800pt;}
.y28d{bottom:426.254133pt;}
.y160{bottom:426.387467pt;}
.y1e4{bottom:426.388133pt;}
.y54{bottom:427.055467pt;}
.y30{bottom:427.329733pt;}
.y14{bottom:429.795867pt;}
.y223{bottom:436.292267pt;}
.y248{bottom:442.195467pt;}
.y26d{bottom:443.512800pt;}
.y28c{bottom:443.582133pt;}
.y1b3{bottom:443.720800pt;}
.y92{bottom:444.118267pt;}
.yb3{bottom:444.663733pt;}
.yd7{bottom:444.665467pt;}
.y72{bottom:445.048800pt;}
.y152{bottom:445.051467pt;}
.yf2{bottom:445.054133pt;}
.y1cf{bottom:445.054800pt;}
.y10d{bottom:445.055467pt;}
.y15f{bottom:445.721467pt;}
.y1e3{bottom:445.722133pt;}
.y53{bottom:446.385467pt;}
.y2f{bottom:446.663733pt;}
.y13{bottom:447.155867pt;}
.y222{bottom:453.620267pt;}
.y247{bottom:459.523467pt;}
.y26c{bottom:460.840800pt;}
.y28b{bottom:460.910133pt;}
.y1b2{bottom:463.054800pt;}
.yb2{bottom:463.997733pt;}
.yd6{bottom:463.999467pt;}
.y71{bottom:464.382800pt;}
.y129{bottom:464.383467pt;}
.y151{bottom:464.385467pt;}
.y17e{bottom:464.386133pt;}
.y1c7{bottom:464.386800pt;}
.yf1{bottom:464.388133pt;}
.y10c{bottom:464.388800pt;}
.y12{bottom:464.483867pt;}
.y15e{bottom:465.055467pt;}
.y52{bottom:465.719467pt;}
.y2e{bottom:465.997733pt;}
.y221{bottom:470.948267pt;}
.y246{bottom:476.851467pt;}
.y26b{bottom:478.168800pt;}
.y28a{bottom:478.238133pt;}
.y11{bottom:481.811867pt;}
.y1b1{bottom:482.388800pt;}
.yd5{bottom:483.330800pt;}
.yb1{bottom:483.331733pt;}
.y10b{bottom:483.716133pt;}
.y70{bottom:483.716800pt;}
.y128{bottom:483.717467pt;}
.y150{bottom:483.719467pt;}
.y17d{bottom:483.720133pt;}
.y1c6{bottom:483.720800pt;}
.y13e{bottom:483.721467pt;}
.yf0{bottom:483.722133pt;}
.y1fe{bottom:484.952400pt;}
.y51{bottom:485.053467pt;}
.y2d{bottom:485.331733pt;}
.y220{bottom:488.276267pt;}
.y245{bottom:494.179467pt;}
.y26a{bottom:495.496800pt;}
.y289{bottom:495.566133pt;}
.y10{bottom:499.139867pt;}
.y1b0{bottom:501.714133pt;}
.y15d{bottom:502.506800pt;}
.y91{bottom:502.664267pt;}
.yd4{bottom:502.664800pt;}
.yb0{bottom:502.665733pt;}
.y10a{bottom:503.050133pt;}
.y6f{bottom:503.050800pt;}
.y127{bottom:503.051467pt;}
.yef{bottom:503.053467pt;}
.y17c{bottom:503.054133pt;}
.y1c5{bottom:503.054800pt;}
.y13d{bottom:503.055467pt;}
.y1fd{bottom:504.286400pt;}
.y50{bottom:504.387467pt;}
.y2c{bottom:504.665733pt;}
.y21f{bottom:505.668267pt;}
.y244{bottom:511.507467pt;}
.y269{bottom:512.824800pt;}
.y288{bottom:512.894133pt;}
.yf{bottom:516.467867pt;}
.y1af{bottom:521.048133pt;}
.y90{bottom:521.998267pt;}
.yd3{bottom:521.998800pt;}
.yaf{bottom:521.999733pt;}
.y13c{bottom:522.380800pt;}
.y109{bottom:522.384133pt;}
.y6e{bottom:522.384800pt;}
.y126{bottom:522.385467pt;}
.yee{bottom:522.387467pt;}
.y17b{bottom:522.388133pt;}
.y21e{bottom:522.996267pt;}
.y1fc{bottom:523.618400pt;}
.y4f{bottom:523.721467pt;}
.y2b{bottom:523.999733pt;}
.y243{bottom:528.835467pt;}
.y268{bottom:530.152800pt;}
.y287{bottom:530.222133pt;}
.ye{bottom:533.795867pt;}
.y21d{bottom:540.324267pt;}
.y1ae{bottom:540.382133pt;}
.y8f{bottom:541.332267pt;}
.yd2{bottom:541.332800pt;}
.yae{bottom:541.333733pt;}
.y13b{bottom:541.714800pt;}
.y108{bottom:541.718133pt;}
.y6d{bottom:541.718800pt;}
.y125{bottom:541.719467pt;}
.yed{bottom:541.721467pt;}
.y17a{bottom:541.722133pt;}
.y1fb{bottom:542.952400pt;}
.y4e{bottom:543.055467pt;}
.y2a{bottom:543.333733pt;}
.y242{bottom:546.163467pt;}
.y267{bottom:547.512800pt;}
.y286{bottom:547.550133pt;}
.yd{bottom:551.134533pt;}
.y21c{bottom:557.652267pt;}
.y1ad{bottom:559.716133pt;}
.yd0{bottom:560.663467pt;}
.yad{bottom:560.665733pt;}
.yd1{bottom:560.666133pt;}
.y8e{bottom:560.666267pt;}
.y13a{bottom:561.048800pt;}
.y107{bottom:561.052133pt;}
.y6c{bottom:561.052800pt;}
.y124{bottom:561.053467pt;}
.y194{bottom:561.054133pt;}
.y1e2{bottom:561.054800pt;}
.yec{bottom:561.055467pt;}
.y1fa{bottom:562.286400pt;}
.y4d{bottom:562.388800pt;}
.y29{bottom:562.663733pt;}
.y241{bottom:563.491467pt;}
.y266{bottom:564.840800pt;}
.y285{bottom:564.878133pt;}
.yc{bottom:568.462533pt;}
.y21b{bottom:574.980267pt;}
.y1ac{bottom:579.050133pt;}
.ycf{bottom:579.997467pt;}
.yac{bottom:579.999733pt;}
.y8d{bottom:580.000267pt;}
.y139{bottom:580.382800pt;}
.y14f{bottom:580.385467pt;}
.y106{bottom:580.386133pt;}
.y6b{bottom:580.386800pt;}
.y123{bottom:580.387467pt;}
.yeb{bottom:580.388133pt;}
.y1e1{bottom:580.388800pt;}
.y240{bottom:580.819467pt;}
.y1f9{bottom:581.618400pt;}
.y4c{bottom:581.721467pt;}
.y28{bottom:581.997733pt;}
.y265{bottom:582.168800pt;}
.y284{bottom:582.206133pt;}
.y21a{bottom:592.308267pt;}
.yb{bottom:594.696000pt;}
.y23f{bottom:598.200800pt;}
.y1ab{bottom:598.384133pt;}
.y8c{bottom:599.328933pt;}
.yce{bottom:599.331467pt;}
.yab{bottom:599.333733pt;}
.y264{bottom:599.496800pt;}
.y283{bottom:599.534133pt;}
.y138{bottom:599.716800pt;}
.y14e{bottom:599.719467pt;}
.y105{bottom:599.720133pt;}
.y6a{bottom:599.720800pt;}
.y122{bottom:599.721467pt;}
.yea{bottom:599.722133pt;}
.y1f8{bottom:600.952400pt;}
.y4b{bottom:601.055467pt;}
.y27{bottom:601.331733pt;}
.y219{bottom:609.636267pt;}
.y23e{bottom:615.528800pt;}
.y29a{bottom:616.819467pt;}
.y263{bottom:616.824800pt;}
.y282{bottom:616.862133pt;}
.y1aa{bottom:617.718133pt;}
.y8b{bottom:618.662933pt;}
.ycd{bottom:618.665467pt;}
.yaa{bottom:618.666400pt;}
.y137{bottom:619.050800pt;}
.ye9{bottom:619.052800pt;}
.y14d{bottom:619.053467pt;}
.y104{bottom:619.054133pt;}
.y69{bottom:619.054800pt;}
.y121{bottom:619.055467pt;}
.y1f7{bottom:620.286400pt;}
.y4a{bottom:620.388800pt;}
.y26{bottom:620.665733pt;}
.y218{bottom:626.964267pt;}
.y23d{bottom:632.856800pt;}
.y262{bottom:634.152800pt;}
.y281{bottom:634.190133pt;}
.y1a9{bottom:637.052133pt;}
.y8a{bottom:637.996933pt;}
.ycc{bottom:637.999467pt;}
.ya9{bottom:638.000400pt;}
.y136{bottom:638.384800pt;}
.ye8{bottom:638.386800pt;}
.y120{bottom:638.387467pt;}
.y103{bottom:638.388133pt;}
.y68{bottom:638.388800pt;}
.y1f6{bottom:639.618400pt;}
.y49{bottom:639.722133pt;}
.y25{bottom:639.999733pt;}
.y217{bottom:644.292267pt;}
.y23c{bottom:650.184800pt;}
.y261{bottom:651.518133pt;}
.y1a8{bottom:656.386133pt;}
.y89{bottom:657.330933pt;}
.ycb{bottom:657.332800pt;}
.ya8{bottom:657.333733pt;}
.y135{bottom:657.718800pt;}
.y67{bottom:657.720800pt;}
.y11f{bottom:657.721467pt;}
.y102{bottom:657.722133pt;}
.y1f5{bottom:658.952400pt;}
.y48{bottom:659.052133pt;}
.y24{bottom:659.333733pt;}
.ya{bottom:660.520267pt;}
.y216{bottom:661.620267pt;}
.y23b{bottom:667.512800pt;}
.y260{bottom:668.846133pt;}
.y1a7{bottom:675.720133pt;}
.yca{bottom:676.663467pt;}
.y88{bottom:676.664933pt;}
.ya7{bottom:676.667067pt;}
.y101{bottom:677.052800pt;}
.y14c{bottom:677.054133pt;}
.y66{bottom:677.054800pt;}
.y11e{bottom:677.055467pt;}
.y1f4{bottom:678.286400pt;}
.y47{bottom:678.386133pt;}
.y23{bottom:678.665733pt;}
.y215{bottom:678.948267pt;}
.y23a{bottom:684.840800pt;}
.y25f{bottom:686.174133pt;}
.y1a6{bottom:695.054133pt;}
.yc9{bottom:695.997467pt;}
.y87{bottom:695.998933pt;}
.ya6{bottom:695.999733pt;}
.y214{bottom:696.276267pt;}
.y100{bottom:696.386800pt;}
.y11d{bottom:696.388133pt;}
.y65{bottom:696.388800pt;}
.y1f3{bottom:697.617733pt;}
.y46{bottom:697.720133pt;}
.y22{bottom:697.999733pt;}
.y239{bottom:702.168800pt;}
.y25e{bottom:703.502133pt;}
.y213{bottom:713.625600pt;}
.y1a5{bottom:714.388133pt;}
.yc8{bottom:715.331467pt;}
.y86{bottom:715.332933pt;}
.ya5{bottom:715.333733pt;}
.y64{bottom:715.720800pt;}
.y1ce{bottom:715.721467pt;}
.y11c{bottom:715.722133pt;}
.y1f2{bottom:716.951733pt;}
.y45{bottom:717.054133pt;}
.y21{bottom:717.333733pt;}
.y238{bottom:719.496800pt;}
.y9{bottom:719.612933pt;}
.y25d{bottom:720.830133pt;}
.y212{bottom:730.953600pt;}
.y1a4{bottom:733.722133pt;}
.yc7{bottom:734.665467pt;}
.ya4{bottom:734.666400pt;}
.y85{bottom:734.666933pt;}
.y63{bottom:735.054800pt;}
.y1cd{bottom:735.055467pt;}
.y1f1{bottom:736.285733pt;}
.y44{bottom:736.388133pt;}
.y237{bottom:736.824800pt;}
.y25c{bottom:738.158133pt;}
.y8{bottom:745.606800pt;}
.y211{bottom:748.281600pt;}
.y1a3{bottom:753.055467pt;}
.yc6{bottom:753.999467pt;}
.y84{bottom:754.000267pt;}
.ya3{bottom:754.000400pt;}
.y236{bottom:754.152800pt;}
.y62{bottom:754.388800pt;}
.y20{bottom:754.785067pt;}
.y25b{bottom:755.486133pt;}
.y1f0{bottom:755.619733pt;}
.y43{bottom:755.722133pt;}
.y210{bottom:765.609600pt;}
.y42{bottom:802.178267pt;}
.y2{bottom:802.212267pt;}
.y41{bottom:802.229600pt;}
.y1f{bottom:802.500533pt;}
.y1{bottom:814.212267pt;}
.h12{height:28.480000pt;}
.h2{height:28.640000pt;}
.h3{height:32.458667pt;}
.h11{height:32.461333pt;}
.h1f{height:32.466667pt;}
.h1d{height:32.472000pt;}
.h17{height:34.000000pt;}
.ha{height:34.368000pt;}
.h8{height:36.074667pt;}
.h9{height:36.277333pt;}
.h7{height:37.493333pt;}
.hc{height:40.096000pt;}
.h10{height:40.098667pt;}
.hd{height:40.101333pt;}
.h18{height:40.104000pt;}
.h14{height:40.106667pt;}
.he{height:40.109333pt;}
.h15{height:40.112000pt;}
.hf{height:40.114667pt;}
.h1a{height:40.117333pt;}
.h1c{height:40.120000pt;}
.h16{height:40.122667pt;}
.h19{height:40.125333pt;}
.h1b{height:40.128000pt;}
.h1e{height:40.130667pt;}
.h13{height:40.136000pt;}
.hb{height:41.242667pt;}
.h6{height:44.221333pt;}
.h4{height:62.480000pt;}
.h5{height:66.965333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:593.333333pt;}
.w0{width:593.385333pt;}
.x0{left:0.000000pt;}
.x4{left:81.648267pt;}
.x2{left:82.818267pt;}
.x3{left:90.374767pt;}
.x6{left:99.401600pt;}
.x9{left:100.740700pt;}
.x5{left:107.719867pt;}
.x8{left:109.053200pt;}
.x1{left:305.788533pt;}
.xa{left:411.742400pt;}
.xb{left:430.045467pt;}
.xd{left:495.574933pt;}
.x7{left:501.214800pt;}
.xc{left:510.682800pt;}
}




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