
    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_c986ffe451ee150b8a59177b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_0b3b53c81dcf89c5c3922eb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_4db18389bae93acc2a4e41d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cfa2bb8f7504c069160d23d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050000;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_a8fd4ffe6d6fac31378fb797.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.047000;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_377d2f70121f764d72c94f0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_71ca3ed74a92cb4f52061d89.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.470000;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_6730d262c5df3f206ee54571.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_af610f674957ebda60e44253.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_712fa96cab4b289ee1e205ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_062a3a940e84393a10b71202.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.709473;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_7b3fa83652fafefc64adb561.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.604000;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_0aa1a54491a234d632d01e7e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_21b16e568f407913967001fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.646000;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_d43b8434f6100d4f60cf9b6a.woff2')format("woff");}.fff{font-family:fff;line-height:1.020000;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);}
.m3{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-15.584400px;}
.v3{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v1{vertical-align:15.584400px;}
.ls33{letter-spacing:-23.343600px;}
.ls48{letter-spacing:-3.990000px;}
.ls15{letter-spacing:-2.199600px;}
.ls6{letter-spacing:-1.920000px;}
.ls4f{letter-spacing:-1.918800px;}
.ls13{letter-spacing:-1.872000px;}
.ls3d{letter-spacing:-1.778400px;}
.ls12{letter-spacing:-1.731600px;}
.ls36{letter-spacing:-1.684800px;}
.ls17{letter-spacing:-1.638000px;}
.ls50{letter-spacing:-1.404000px;}
.ls79{letter-spacing:-1.350000px;}
.ls78{letter-spacing:-1.305000px;}
.ls5b{letter-spacing:-1.216800px;}
.ls5c{letter-spacing:-1.170000px;}
.ls5a{letter-spacing:-1.076400px;}
.ls7b{letter-spacing:-1.035000px;}
.ls59{letter-spacing:-0.982800px;}
.ls47{letter-spacing:-0.936000px;}
.ls51{letter-spacing:-0.842400px;}
.ls3c{letter-spacing:-0.795600px;}
.ls58{letter-spacing:-0.748800px;}
.ls14{letter-spacing:-0.702000px;}
.ls22{letter-spacing:-0.655200px;}
.ls77{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.608400px;}
.ls62{letter-spacing:-0.585000px;}
.ls30{letter-spacing:-0.561600px;}
.ls31{letter-spacing:-0.560246px;}
.ls11{letter-spacing:-0.514800px;}
.ls5f{letter-spacing:-0.495000px;}
.lsd{letter-spacing:-0.468000px;}
.lse{letter-spacing:-0.421200px;}
.ls7a{letter-spacing:-0.405000px;}
.ls1f{letter-spacing:-0.374400px;}
.ls60{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.327600px;}
.ls2b{letter-spacing:-0.326810px;}
.ls9{letter-spacing:-0.324000px;}
.ls63{letter-spacing:-0.315000px;}
.ls35{letter-spacing:-0.280800px;}
.ls5e{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.234000px;}
.lsf{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.187200px;}
.ls1d{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.166500px;}
.lsc{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.140400px;}
.ls5d{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.117000px;}
.ls1e{letter-spacing:-0.093600px;}
.ls7c{letter-spacing:-0.090000px;}
.ls37{letter-spacing:-0.081853px;}
.ls16{letter-spacing:-0.046800px;}
.ls61{letter-spacing:-0.045000px;}
.ls8{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.005400px;}
.ls54{letter-spacing:0.022500px;}
.ls56{letter-spacing:0.044400px;}
.ls65{letter-spacing:0.045000px;}
.ls1a{letter-spacing:0.046800px;}
.ls67{letter-spacing:0.064200px;}
.ls55{letter-spacing:0.067500px;}
.ls39{letter-spacing:0.068400px;}
.ls38{letter-spacing:0.069600px;}
.ls29{letter-spacing:0.070200px;}
.ls57{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.093600px;}
.ls70{letter-spacing:0.135000px;}
.ls2{letter-spacing:0.140400px;}
.ls53{letter-spacing:0.157500px;}
.ls71{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.187200px;}
.ls25{letter-spacing:0.210600px;}
.ls7d{letter-spacing:0.225000px;}
.ls24{letter-spacing:0.234000px;}
.ls3e{letter-spacing:0.237600px;}
.ls3f{letter-spacing:0.263400px;}
.ls74{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.280800px;}
.ls6e{letter-spacing:0.315000px;}
.ls3a{letter-spacing:0.327600px;}
.ls19{letter-spacing:0.374400px;}
.ls72{letter-spacing:0.405000px;}
.ls28{letter-spacing:0.421200px;}
.ls3b{letter-spacing:0.468000px;}
.ls0{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.608400px;}
.ls76{letter-spacing:0.630000px;}
.ls43{letter-spacing:0.631800px;}
.ls7e{letter-spacing:0.675000px;}
.ls4c{letter-spacing:0.772200px;}
.ls42{letter-spacing:0.795600px;}
.ls4d{letter-spacing:0.842400px;}
.ls4a{letter-spacing:0.936000px;}
.ls45{letter-spacing:0.959400px;}
.ls49{letter-spacing:1.029600px;}
.ls44{letter-spacing:1.053000px;}
.ls4b{letter-spacing:1.099800px;}
.ls41{letter-spacing:1.170000px;}
.ls75{letter-spacing:1.303200px;}
.ls6c{letter-spacing:1.741800px;}
.ls6a{letter-spacing:1.834200px;}
.ls69{letter-spacing:2.187600px;}
.ls52{letter-spacing:2.916600px;}
.ls68{letter-spacing:3.658800px;}
.ls6b{letter-spacing:4.057800px;}
.ls66{letter-spacing:5.998200px;}
.ls6d{letter-spacing:6.348000px;}
.ls1b{letter-spacing:9.207600px;}
.ls2e{letter-spacing:11.438364px;}
.ls6f{letter-spacing:15.218400px;}
.ls27{letter-spacing:16.274119px;}
.ls73{letter-spacing:17.919600px;}
.ls64{letter-spacing:32.808600px;}
.ls18{letter-spacing:32.809200px;}
.ls1{letter-spacing:40.117337px;}
.ls2c{letter-spacing:45.940205px;}
.ls32{letter-spacing:108.937476px;}
.ls2d{letter-spacing:117.184872px;}
.ls2f{letter-spacing:130.537411px;}
.ls46{letter-spacing:140.254800px;}
.ls26{letter-spacing:145.990874px;}
.ls34{letter-spacing:352.401768px;}
.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;}
}
.ws8e{word-spacing:-352.401768px;}
.ws65{word-spacing:-142.816145px;}
.ws68{word-spacing:-142.386399px;}
.ws88{word-spacing:-45.940205px;}
.ws6{word-spacing:-19.338000px;}
.wsbd{word-spacing:-17.580000px;}
.ws5{word-spacing:-15.822000px;}
.ws6c{word-spacing:-15.262500px;}
.ws0{word-spacing:-14.064000px;}
.ws119{word-spacing:-13.995000px;}
.ws38{word-spacing:-13.852800px;}
.ws117{word-spacing:-13.545000px;}
.wsf9{word-spacing:-13.320000px;}
.wsfa{word-spacing:-13.185000px;}
.ws3a{word-spacing:-13.150800px;}
.ws11a{word-spacing:-13.140000px;}
.ws2{word-spacing:-13.010400px;}
.wsb7{word-spacing:-12.963600px;}
.ws1{word-spacing:-12.870000px;}
.ws118{word-spacing:-12.780000px;}
.ws63{word-spacing:-12.776400px;}
.ws7{word-spacing:-12.542400px;}
.ws6b{word-spacing:-12.402000px;}
.wsf8{word-spacing:-12.375000px;}
.wsc1{word-spacing:-12.306000px;}
.ws116{word-spacing:-12.285000px;}
.ws115{word-spacing:-11.970000px;}
.wsf7{word-spacing:-11.934000px;}
.ws114{word-spacing:-11.880000px;}
.ws3{word-spacing:-10.842000px;}
.ws4{word-spacing:-10.725000px;}
.ws6a{word-spacing:-7.585063px;}
.ws9e{word-spacing:-7.503210px;}
.wsdb{word-spacing:-7.182000px;}
.ws49{word-spacing:-7.160400px;}
.ws110{word-spacing:-4.140000px;}
.wsc7{word-spacing:-3.931200px;}
.wsb1{word-spacing:-3.463200px;}
.wsb3{word-spacing:-3.369600px;}
.ws29{word-spacing:-2.808000px;}
.wsf1{word-spacing:-2.761200px;}
.ws14{word-spacing:-2.620800px;}
.ws19{word-spacing:-2.574000px;}
.ws11f{word-spacing:-2.565000px;}
.ws97{word-spacing:-2.527200px;}
.ws102{word-spacing:-2.520000px;}
.wse0{word-spacing:-2.480400px;}
.ws106{word-spacing:-2.475000px;}
.ws8f{word-spacing:-2.433600px;}
.wsa5{word-spacing:-2.386800px;}
.ws3d{word-spacing:-2.340000px;}
.wsc6{word-spacing:-2.293200px;}
.ws4a{word-spacing:-2.246400px;}
.ws85{word-spacing:-2.199600px;}
.ws17{word-spacing:-2.152800px;}
.ws108{word-spacing:-2.115000px;}
.wsa7{word-spacing:-2.106000px;}
.ws82{word-spacing:-2.059200px;}
.wsac{word-spacing:-2.012400px;}
.ws72{word-spacing:-1.918800px;}
.ws70{word-spacing:-1.872000px;}
.ws26{word-spacing:-1.825200px;}
.wsfd{word-spacing:-1.778400px;}
.ws78{word-spacing:-1.638000px;}
.ws11b{word-spacing:-1.620000px;}
.ws42{word-spacing:-1.591200px;}
.ws84{word-spacing:-1.544400px;}
.ws10c{word-spacing:-1.530000px;}
.wsb4{word-spacing:-1.450800px;}
.ws2f{word-spacing:-1.404000px;}
.wsd9{word-spacing:-1.357200px;}
.ws46{word-spacing:-1.310400px;}
.ws61{word-spacing:-1.263600px;}
.ws32{word-spacing:-1.216800px;}
.wsf2{word-spacing:-1.170000px;}
.ws55{word-spacing:-1.123200px;}
.ws25{word-spacing:-1.076400px;}
.ws75{word-spacing:-1.029600px;}
.ws52{word-spacing:-0.982800px;}
.ws48{word-spacing:-0.936000px;}
.ws98{word-spacing:-0.889200px;}
.ws7a{word-spacing:-0.748800px;}
.wsd2{word-spacing:-0.702000px;}
.ws10a{word-spacing:-0.675000px;}
.ws5a{word-spacing:-0.655200px;}
.ws13a{word-spacing:-0.630000px;}
.wse{word-spacing:-0.608400px;}
.ws7e{word-spacing:-0.561600px;}
.ws53{word-spacing:-0.514800px;}
.ws50{word-spacing:-0.468000px;}
.wseb{word-spacing:-0.421200px;}
.wse5{word-spacing:-0.374400px;}
.wsd{word-spacing:-0.280800px;}
.ws7b{word-spacing:-0.234000px;}
.ws1c{word-spacing:-0.187200px;}
.ws5e{word-spacing:-0.140400px;}
.ws120{word-spacing:-0.135000px;}
.wsc{word-spacing:-0.108000px;}
.ws10f{word-spacing:-0.090000px;}
.ws39{word-spacing:-0.046800px;}
.ws8{word-spacing:0.000000px;}
.ws12e{word-spacing:0.045000px;}
.ws4f{word-spacing:0.046800px;}
.ws77{word-spacing:0.093600px;}
.ws37{word-spacing:0.117000px;}
.wsb{word-spacing:0.126000px;}
.ws103{word-spacing:0.135000px;}
.ws1d{word-spacing:0.140400px;}
.wsa{word-spacing:0.144000px;}
.ws111{word-spacing:0.180000px;}
.wscb{word-spacing:0.187200px;}
.ws43{word-spacing:0.198000px;}
.ws129{word-spacing:0.225000px;}
.ws95{word-spacing:0.234000px;}
.wsd7{word-spacing:0.280800px;}
.ws8c{word-spacing:0.326810px;}
.wsd6{word-spacing:0.327600px;}
.ws58{word-spacing:0.374400px;}
.ws1a{word-spacing:0.421200px;}
.ws2b{word-spacing:0.468000px;}
.ws113{word-spacing:0.495000px;}
.ws8b{word-spacing:0.560246px;}
.wsa3{word-spacing:0.561600px;}
.ws11d{word-spacing:0.630000px;}
.ws5c{word-spacing:0.655200px;}
.ws126{word-spacing:0.675000px;}
.ws11{word-spacing:0.702000px;}
.wsd4{word-spacing:0.748800px;}
.ws13{word-spacing:0.795600px;}
.ws4e{word-spacing:0.889200px;}
.ws36{word-spacing:1.029600px;}
.ws12d{word-spacing:1.035000px;}
.wsa1{word-spacing:1.076400px;}
.ws40{word-spacing:1.123200px;}
.wse4{word-spacing:1.170000px;}
.ws22{word-spacing:1.216800px;}
.ws1e{word-spacing:1.263600px;}
.ws104{word-spacing:1.305000px;}
.wsa6{word-spacing:1.310400px;}
.ws93{word-spacing:1.357200px;}
.ws100{word-spacing:1.395000px;}
.ws137{word-spacing:1.440000px;}
.wsaa{word-spacing:1.450800px;}
.ws54{word-spacing:1.497600px;}
.wsbc{word-spacing:1.544400px;}
.ws12{word-spacing:1.591200px;}
.ws125{word-spacing:1.620000px;}
.ws35{word-spacing:1.638000px;}
.ws71{word-spacing:1.684800px;}
.ws21{word-spacing:1.731600px;}
.wsb8{word-spacing:1.778400px;}
.ws3b{word-spacing:1.825200px;}
.ws23{word-spacing:1.872000px;}
.ws12f{word-spacing:1.890000px;}
.ws45{word-spacing:1.918800px;}
.ws9{word-spacing:1.920000px;}
.ws4d{word-spacing:1.965600px;}
.ws92{word-spacing:2.012400px;}
.wsd1{word-spacing:2.059200px;}
.wsa2{word-spacing:2.106000px;}
.ws31{word-spacing:2.152800px;}
.ws107{word-spacing:2.160000px;}
.ws2a{word-spacing:2.199600px;}
.ws6e{word-spacing:2.246400px;}
.ws127{word-spacing:2.340000px;}
.wsdf{word-spacing:2.386800px;}
.ws47{word-spacing:2.433600px;}
.wsfe{word-spacing:2.480400px;}
.ws2c{word-spacing:2.527200px;}
.wsab{word-spacing:2.574000px;}
.ws59{word-spacing:2.620800px;}
.ws24{word-spacing:2.667600px;}
.ws44{word-spacing:2.714400px;}
.ws5d{word-spacing:2.761200px;}
.ws18{word-spacing:2.808000px;}
.ws3e{word-spacing:2.854800px;}
.ws123{word-spacing:2.880000px;}
.ws74{word-spacing:2.901600px;}
.ws128{word-spacing:2.925000px;}
.wsf0{word-spacing:2.948400px;}
.wsfc{word-spacing:3.042000px;}
.ws101{word-spacing:3.060000px;}
.ws33{word-spacing:3.088800px;}
.ws1b{word-spacing:3.135600px;}
.wsf{word-spacing:3.182400px;}
.ws12c{word-spacing:3.240000px;}
.ws76{word-spacing:3.276000px;}
.ws94{word-spacing:3.322800px;}
.wse2{word-spacing:3.369600px;}
.ws64{word-spacing:3.440847px;}
.wsef{word-spacing:3.463200px;}
.ws62{word-spacing:3.510000px;}
.ws80{word-spacing:3.650400px;}
.ws12b{word-spacing:3.690000px;}
.wsb9{word-spacing:3.697200px;}
.ws60{word-spacing:3.744000px;}
.ws124{word-spacing:3.780000px;}
.ws4c{word-spacing:3.790800px;}
.ws15{word-spacing:3.837600px;}
.wsc9{word-spacing:3.931200px;}
.ws28{word-spacing:3.978000px;}
.wsd0{word-spacing:4.024800px;}
.ws121{word-spacing:4.050000px;}
.ws105{word-spacing:4.095000px;}
.ws10{word-spacing:4.118400px;}
.ws12a{word-spacing:4.140000px;}
.wse1{word-spacing:4.165200px;}
.ws51{word-spacing:4.212000px;}
.ws2d{word-spacing:4.258800px;}
.ws41{word-spacing:4.305600px;}
.wsdd{word-spacing:4.352400px;}
.ws5b{word-spacing:4.399200px;}
.wse3{word-spacing:4.446000px;}
.wsc8{word-spacing:4.492800px;}
.wscc{word-spacing:4.539600px;}
.ws4b{word-spacing:4.586400px;}
.ws30{word-spacing:4.726800px;}
.ws131{word-spacing:4.770000px;}
.ws16{word-spacing:4.773600px;}
.ws20{word-spacing:4.820400px;}
.ws10b{word-spacing:4.860000px;}
.wsa9{word-spacing:4.914000px;}
.wse7{word-spacing:4.960800px;}
.ws9a{word-spacing:5.007600px;}
.ws11e{word-spacing:5.040000px;}
.wsd5{word-spacing:5.054400px;}
.ws7d{word-spacing:5.194800px;}
.ws89{word-spacing:5.241600px;}
.wsa4{word-spacing:5.335200px;}
.wsb2{word-spacing:5.382000px;}
.ws3f{word-spacing:5.428800px;}
.wsf6{word-spacing:5.569200px;}
.ws8a{word-spacing:5.616000px;}
.wsae{word-spacing:5.709600px;}
.ws81{word-spacing:5.756400px;}
.ws11c{word-spacing:5.895000px;}
.ws122{word-spacing:5.940000px;}
.wsad{word-spacing:5.943600px;}
.ws138{word-spacing:6.030000px;}
.wsd3{word-spacing:6.084000px;}
.wse6{word-spacing:6.130800px;}
.wsbb{word-spacing:6.224400px;}
.ws130{word-spacing:6.255000px;}
.ws9c{word-spacing:6.271200px;}
.ws10d{word-spacing:6.300000px;}
.wsf5{word-spacing:6.318000px;}
.ws10e{word-spacing:6.345000px;}
.ws7c{word-spacing:6.458400px;}
.ws112{word-spacing:6.525000px;}
.ws5f{word-spacing:6.552000px;}
.ws99{word-spacing:6.598800px;}
.wscf{word-spacing:6.645600px;}
.ws90{word-spacing:6.832800px;}
.ws9f{word-spacing:6.879600px;}
.wsdc{word-spacing:6.926400px;}
.wsa8{word-spacing:7.207200px;}
.wsaf{word-spacing:7.254000px;}
.ws34{word-spacing:7.300800px;}
.wsea{word-spacing:7.441200px;}
.wsa0{word-spacing:7.862400px;}
.wsb0{word-spacing:7.956000px;}
.ws87{word-spacing:8.002800px;}
.wsda{word-spacing:8.096400px;}
.wsec{word-spacing:8.470800px;}
.ws56{word-spacing:8.798400px;}
.ws133{word-spacing:8.865000px;}
.ws1f{word-spacing:8.892000px;}
.ws57{word-spacing:8.938800px;}
.ws2e{word-spacing:9.313200px;}
.ws109{word-spacing:9.315000px;}
.wsde{word-spacing:9.734400px;}
.ws83{word-spacing:9.828000px;}
.ws9d{word-spacing:10.015200px;}
.wsce{word-spacing:10.155600px;}
.ws134{word-spacing:10.530000px;}
.ws27{word-spacing:10.670400px;}
.ws6f{word-spacing:10.717200px;}
.ws86{word-spacing:10.904400px;}
.wsb6{word-spacing:11.044800px;}
.wscd{word-spacing:11.185200px;}
.ws7f{word-spacing:11.232000px;}
.wsb5{word-spacing:11.606400px;}
.ws9b{word-spacing:11.700000px;}
.wse8{word-spacing:11.840400px;}
.wsd8{word-spacing:11.980800px;}
.ws73{word-spacing:12.308400px;}
.ws136{word-spacing:12.375000px;}
.wsed{word-spacing:12.542400px;}
.ws79{word-spacing:12.823200px;}
.wsc5{word-spacing:13.010400px;}
.wsfb{word-spacing:13.244400px;}
.wsf4{word-spacing:13.525200px;}
.wse9{word-spacing:13.572000px;}
.ws132{word-spacing:14.895000px;}
.wsff{word-spacing:15.069600px;}
.wsca{word-spacing:15.116400px;}
.ws3c{word-spacing:16.005600px;}
.wsba{word-spacing:16.380000px;}
.wsf3{word-spacing:16.707600px;}
.ws135{word-spacing:17.505000px;}
.ws91{word-spacing:17.971200px;}
.ws96{word-spacing:18.205200px;}
.ws8d{word-spacing:23.343600px;}
.wsee{word-spacing:23.821200px;}
.ws139{word-spacing:24.390000px;}
.ws6d{word-spacing:32.806800px;}
.wsc4{word-spacing:49.413000px;}
.ws66{word-spacing:50.104703px;}
.wsc2{word-spacing:62.505600px;}
.wsbe{word-spacing:84.891600px;}
.wsbf{word-spacing:104.253000px;}
.wsc0{word-spacing:131.647200px;}
.ws69{word-spacing:156.308746px;}
.ws67{word-spacing:229.605302px;}
.wsc3{word-spacing:416.851200px;}
._16{margin-left:-656.683480px;}
._17{margin-left:-365.766012px;}
._18{margin-left:-188.952436px;}
._3c{margin-left:-27.950400px;}
._3d{margin-left:-21.084600px;}
._28{margin-left:-19.507500px;}
._7{margin-left:-17.830800px;}
._2b{margin-left:-15.865200px;}
._d{margin-left:-11.700000px;}
._b{margin-left:-10.315200px;}
._c{margin-left:-9.032400px;}
._27{margin-left:-7.928400px;}
._6{margin-left:-6.851520px;}
._3{margin-left:-5.599800px;}
._1{margin-left:-4.537200px;}
._5{margin-left:-3.443100px;}
._0{margin-left:-2.040000px;}
._4{margin-left:-1.007100px;}
._2{width:1.078800px;}
._8{width:2.560200px;}
._2c{width:4.041600px;}
._26{width:6.093120px;}
._9{width:7.834200px;}
._2a{width:9.388200px;}
._25{width:10.518626px;}
._29{width:12.319320px;}
._20{width:15.583862px;}
._23{width:22.802028px;}
._19{width:25.439855px;}
._24{width:26.999208px;}
._a{width:32.809800px;}
._e{width:34.017900px;}
._1e{width:41.131423px;}
._12{width:45.940205px;}
._10{width:50.128047px;}
._11{width:60.926796px;}
._13{width:72.925406px;}
._3a{width:74.563200px;}
._38{width:75.878700px;}
._31{width:79.113600px;}
._1d{width:84.326421px;}
._35{width:86.200200px;}
._21{width:92.449668px;}
._3b{width:95.745600px;}
._32{width:97.780365px;}
._1f{width:99.569235px;}
._39{width:109.647600px;}
._37{width:111.847200px;}
._34{width:124.833000px;}
._1b{width:128.128352px;}
._36{width:131.500800px;}
._2e{width:143.320200px;}
._14{width:146.723863px;}
._15{width:165.328713px;}
._1c{width:168.923627px;}
._30{width:175.183200px;}
._2f{width:194.323200px;}
._1a{width:280.636434px;}
._22{width:307.388525px;}
._f{width:351.041057px;}
._33{width:431.475600px;}
._2d{width:585.961200px;}
.fc2{color:rgb(58,83,164);}
.fc1{color:rgb(0,146,200);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:27.284400px;}
.fs5{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fsa{font-size:46.687200px;}
.fs3{font-size:46.800000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:55.500000px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:60.927000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:6.600150px;}
.yab{bottom:7.500000px;}
.y47{bottom:54.205050px;}
.ycc{bottom:59.039850px;}
.y7b{bottom:59.040000px;}
.y185{bottom:59.061000px;}
.y1ad{bottom:59.119800px;}
.ya9{bottom:59.271000px;}
.y15d{bottom:59.644800px;}
.y145{bottom:62.271000px;}
.yea{bottom:67.043100px;}
.y46{bottom:68.455050px;}
.y11b{bottom:71.379750px;}
.y7a{bottom:72.540000px;}
.y184{bottom:75.561000px;}
.y1ac{bottom:75.619800px;}
.ya8{bottom:75.771000px;}
.y15c{bottom:76.144800px;}
.y144{bottom:78.771000px;}
.y48{bottom:82.718550px;}
.ye9{bottom:83.543100px;}
.y79{bottom:86.040000px;}
.y11a{bottom:87.879750px;}
.y183{bottom:92.061000px;}
.y1ab{bottom:92.119800px;}
.ya7{bottom:92.271000px;}
.y15b{bottom:92.644800px;}
.y143{bottom:95.271000px;}
.y45{bottom:96.982050px;}
.ye8{bottom:100.043100px;}
.yed{bottom:103.043100px;}
.y119{bottom:104.379750px;}
.y182{bottom:108.561000px;}
.y1aa{bottom:108.619800px;}
.ya6{bottom:108.771000px;}
.y15a{bottom:109.144800px;}
.y142{bottom:111.771000px;}
.ye7{bottom:116.543100px;}
.y118{bottom:120.879750px;}
.y1a9{bottom:125.119800px;}
.ya5{bottom:125.271000px;}
.y159{bottom:125.644800px;}
.y141{bottom:128.271000px;}
.y181{bottom:131.061000px;}
.ye6{bottom:133.043100px;}
.y44{bottom:135.446100px;}
.y2f{bottom:135.827100px;}
.y117{bottom:137.379750px;}
.y1a8{bottom:141.619800px;}
.ya4{bottom:141.771000px;}
.y158{bottom:142.144800px;}
.y140{bottom:144.771000px;}
.ye5{bottom:149.543100px;}
.y43{bottom:152.249850px;}
.y2e{bottom:152.327100px;}
.y116{bottom:153.879750px;}
.y1a7{bottom:158.119800px;}
.ya3{bottom:158.271000px;}
.y157{bottom:158.644800px;}
.y13f{bottom:161.271000px;}
.ye4{bottom:166.043100px;}
.y2d{bottom:168.827100px;}
.y42{bottom:169.053750px;}
.y115{bottom:170.379750px;}
.y121{bottom:173.379750px;}
.y1a6{bottom:174.619800px;}
.ya2{bottom:174.771000px;}
.y156{bottom:175.144800px;}
.y180{bottom:175.311000px;}
.y13e{bottom:177.771000px;}
.ye3{bottom:182.543100px;}
.y2c{bottom:185.327100px;}
.y41{bottom:185.857650px;}
.y114{bottom:186.879750px;}
.y120{bottom:189.879750px;}
.y1a5{bottom:191.119800px;}
.ya1{bottom:191.271000px;}
.y155{bottom:191.644800px;}
.y17f{bottom:191.811000px;}
.y13d{bottom:194.271000px;}
.ye2{bottom:199.043100px;}
.y2b{bottom:201.827100px;}
.y40{bottom:202.661550px;}
.y113{bottom:203.379750px;}
.y1a4{bottom:207.619800px;}
.ya0{bottom:207.771000px;}
.y154{bottom:208.144800px;}
.y17e{bottom:208.311000px;}
.y13c{bottom:210.771000px;}
.ye1{bottom:215.543100px;}
.y2a{bottom:218.327100px;}
.y3f{bottom:219.465300px;}
.y112{bottom:219.879750px;}
.y1a3{bottom:224.119800px;}
.y9f{bottom:224.271000px;}
.y153{bottom:224.644800px;}
.y13b{bottom:227.271000px;}
.y17d{bottom:230.811000px;}
.ye0{bottom:232.043100px;}
.y29{bottom:234.827100px;}
.y3e{bottom:236.269200px;}
.y111{bottom:236.379750px;}
.y1a2{bottom:240.619800px;}
.y9e{bottom:240.771000px;}
.y152{bottom:241.144800px;}
.y13a{bottom:243.771000px;}
.ydf{bottom:248.543100px;}
.y28{bottom:251.327100px;}
.y110{bottom:252.879750px;}
.y3d{bottom:253.073100px;}
.y1a1{bottom:257.119800px;}
.y9d{bottom:257.271000px;}
.y151{bottom:257.644800px;}
.y139{bottom:260.271000px;}
.yde{bottom:265.043100px;}
.y27{bottom:267.827100px;}
.y10f{bottom:269.379750px;}
.y3c{bottom:269.876850px;}
.y1a0{bottom:273.619800px;}
.y9c{bottom:273.771000px;}
.y150{bottom:274.144800px;}
.y17c{bottom:274.311000px;}
.y138{bottom:276.771000px;}
.ydd{bottom:281.543100px;}
.y26{bottom:284.327100px;}
.y10e{bottom:285.879750px;}
.y3b{bottom:286.680750px;}
.y19f{bottom:290.119800px;}
.y9b{bottom:290.271000px;}
.y14f{bottom:290.644800px;}
.y17b{bottom:296.811000px;}
.ydc{bottom:298.043100px;}
.y25{bottom:300.827100px;}
.y10d{bottom:302.379750px;}
.y3a{bottom:303.484650px;}
.y19e{bottom:306.619800px;}
.y9a{bottom:306.771000px;}
.y14e{bottom:307.144800px;}
.y14a{bottom:312.768300px;}
.ydb{bottom:314.543100px;}
.y24{bottom:317.327100px;}
.y10c{bottom:318.879750px;}
.y39{bottom:320.288550px;}
.y19d{bottom:323.119800px;}
.y99{bottom:323.271000px;}
.y14d{bottom:323.644800px;}
.y149{bottom:326.268300px;}
.yc1{bottom:326.271000px;}
.yda{bottom:331.043100px;}
.y23{bottom:333.827100px;}
.y10b{bottom:335.379750px;}
.y38{bottom:337.092300px;}
.y19c{bottom:339.619800px;}
.y148{bottom:339.768300px;}
.y98{bottom:339.771000px;}
.y14c{bottom:340.144800px;}
.y17a{bottom:340.311000px;}
.yd9{bottom:347.543100px;}
.y22{bottom:350.327100px;}
.y10a{bottom:351.879750px;}
.y147{bottom:353.268300px;}
.y37{bottom:353.896200px;}
.y19b{bottom:356.119800px;}
.y97{bottom:356.271000px;}
.y14b{bottom:356.644800px;}
.y179{bottom:356.811000px;}
.yd8{bottom:364.043100px;}
.yc0{bottom:365.271000px;}
.y146{bottom:366.768300px;}
.y21{bottom:366.827100px;}
.y109{bottom:368.379750px;}
.y36{bottom:370.700100px;}
.y19a{bottom:372.619800px;}
.y96{bottom:372.771000px;}
.yd7{bottom:380.543100px;}
.ybf{bottom:381.771000px;}
.y20{bottom:383.327100px;}
.y108{bottom:384.879750px;}
.y35{bottom:387.503850px;}
.y199{bottom:389.119800px;}
.y95{bottom:389.271000px;}
.y178{bottom:389.811000px;}
.yd5{bottom:397.043100px;}
.y162{bottom:397.142250px;}
.ybe{bottom:398.271000px;}
.y1f{bottom:399.827100px;}
.yd6{bottom:400.939200px;}
.y107{bottom:401.379750px;}
.y34{bottom:404.307750px;}
.y198{bottom:405.619800px;}
.y94{bottom:405.771000px;}
.y177{bottom:406.311000px;}
.y161{bottom:410.642250px;}
.yd4{bottom:413.543100px;}
.ybd{bottom:414.771000px;}
.y1e{bottom:416.327100px;}
.yec{bottom:416.543100px;}
.y106{bottom:417.879750px;}
.y33{bottom:421.111650px;}
.y197{bottom:422.119800px;}
.y93{bottom:422.271000px;}
.y176{bottom:422.811000px;}
.yd2{bottom:430.043100px;}
.ybc{bottom:431.271000px;}
.y1d{bottom:432.827100px;}
.yd3{bottom:433.939200px;}
.y11f{bottom:434.379750px;}
.yeb{bottom:436.043100px;}
.y105{bottom:437.379750px;}
.y32{bottom:437.915550px;}
.y196{bottom:438.619800px;}
.y92{bottom:438.771000px;}
.y175{bottom:439.311000px;}
.yd0{bottom:446.543100px;}
.ybb{bottom:447.771000px;}
.y1c{bottom:449.327100px;}
.yd1{bottom:450.439200px;}
.y11e{bottom:450.879750px;}
.y31{bottom:454.719300px;}
.y195{bottom:455.119800px;}
.y91{bottom:455.271000px;}
.y174{bottom:455.811000px;}
.ycf{bottom:463.043100px;}
.yba{bottom:464.271000px;}
.y1b{bottom:465.827100px;}
.y104{bottom:467.379750px;}
.y30{bottom:471.523200px;}
.y194{bottom:471.619800px;}
.y90{bottom:471.771000px;}
.y173{bottom:472.311000px;}
.ycd{bottom:479.543100px;}
.yb9{bottom:480.771000px;}
.yce{bottom:483.439200px;}
.y103{bottom:483.879750px;}
.y6d{bottom:485.271000px;}
.y11d{bottom:486.879750px;}
.y193{bottom:488.119800px;}
.y8f{bottom:488.271000px;}
.y1a{bottom:488.327100px;}
.y172{bottom:488.811000px;}
.yb8{bottom:497.271000px;}
.y102{bottom:500.379750px;}
.y6c{bottom:501.771000px;}
.y192{bottom:504.619800px;}
.y8e{bottom:504.771000px;}
.y171{bottom:505.311000px;}
.ycb{bottom:508.667250px;}
.yb7{bottom:513.771000px;}
.y101{bottom:516.879750px;}
.y6b{bottom:518.271000px;}
.yf0{bottom:518.540250px;}
.y191{bottom:521.119800px;}
.y8d{bottom:521.271000px;}
.y170{bottom:521.811000px;}
.yca{bottom:525.167250px;}
.yb6{bottom:530.271000px;}
.yef{bottom:532.040250px;}
.y100{bottom:533.379750px;}
.y6a{bottom:534.771000px;}
.y190{bottom:537.619800px;}
.y8c{bottom:537.771000px;}
.y16f{bottom:538.311000px;}
.yb5{bottom:546.771000px;}
.yff{bottom:549.879750px;}
.y69{bottom:551.271000px;}
.y18f{bottom:554.119800px;}
.y8b{bottom:554.271000px;}
.y16e{bottom:554.811000px;}
.yc9{bottom:558.167250px;}
.yb4{bottom:563.271000px;}
.yfe{bottom:566.379750px;}
.y68{bottom:567.771000px;}
.y19{bottom:567.827100px;}
.y18e{bottom:570.619800px;}
.y8a{bottom:570.771000px;}
.y16d{bottom:571.311000px;}
.yc8{bottom:574.667250px;}
.yb3{bottom:579.771000px;}
.yfd{bottom:582.879750px;}
.y67{bottom:584.271000px;}
.y18d{bottom:587.119800px;}
.y89{bottom:587.271000px;}
.y16c{bottom:587.811000px;}
.y18{bottom:591.077100px;}
.yc7{bottom:591.167250px;}
.yb2{bottom:596.271000px;}
.yfc{bottom:599.379750px;}
.y66{bottom:600.771000px;}
.y18c{bottom:603.619800px;}
.y88{bottom:603.771000px;}
.y16b{bottom:604.311000px;}
.y17{bottom:605.327100px;}
.yb1{bottom:615.771000px;}
.yfb{bottom:615.879750px;}
.y65{bottom:617.271000px;}
.y16{bottom:619.577100px;}
.y18b{bottom:620.119800px;}
.y87{bottom:620.271000px;}
.y1cc{bottom:620.617050px;}
.y16a{bottom:620.811000px;}
.yfa{bottom:632.379750px;}
.y64{bottom:633.771000px;}
.y15{bottom:633.827100px;}
.y18a{bottom:636.619800px;}
.y86{bottom:636.771000px;}
.y1cb{bottom:637.117050px;}
.y169{bottom:637.311000px;}
.y14{bottom:648.077100px;}
.yf9{bottom:648.879750px;}
.y63{bottom:650.271000px;}
.y85{bottom:653.271000px;}
.y1ca{bottom:653.617050px;}
.y168{bottom:653.811000px;}
.y189{bottom:659.119800px;}
.y13{bottom:662.327100px;}
.yf8{bottom:665.379750px;}
.y62{bottom:666.771000px;}
.y84{bottom:669.771000px;}
.y1c9{bottom:670.117050px;}
.y167{bottom:670.311000px;}
.y11c{bottom:671.379750px;}
.yc6{bottom:672.771000px;}
.y12{bottom:676.577100px;}
.yf7{bottom:681.879750px;}
.y61{bottom:683.271000px;}
.y83{bottom:686.271000px;}
.y1c8{bottom:686.617050px;}
.y166{bottom:686.811000px;}
.y11{bottom:690.827100px;}
.yc5{bottom:692.271000px;}
.yf6{bottom:698.379750px;}
.y188{bottom:699.619800px;}
.y60{bottom:699.771000px;}
.yaf{bottom:702.771000px;}
.y1c7{bottom:703.117050px;}
.y165{bottom:703.311000px;}
.y10{bottom:705.077100px;}
.y82{bottom:705.771000px;}
.yb0{bottom:706.667250px;}
.yc4{bottom:714.771000px;}
.yf5{bottom:714.879750px;}
.y187{bottom:716.119800px;}
.y5f{bottom:716.271000px;}
.yae{bottom:719.271000px;}
.yf{bottom:719.327100px;}
.y1c6{bottom:719.617050px;}
.y164{bottom:719.811000px;}
.yc3{bottom:722.271000px;}
.yf4{bottom:731.379750px;}
.y5e{bottom:732.771000px;}
.ye{bottom:733.577100px;}
.y81{bottom:735.771000px;}
.y1c5{bottom:736.117050px;}
.y163{bottom:736.311000px;}
.y186{bottom:738.619800px;}
.yd{bottom:747.827100px;}
.yf3{bottom:747.879750px;}
.y5d{bottom:749.271000px;}
.y80{bottom:752.271000px;}
.y1c4{bottom:752.617050px;}
.yf2{bottom:764.379750px;}
.y5c{bottom:765.771000px;}
.y7f{bottom:768.771000px;}
.y1c3{bottom:769.117200px;}
.yc{bottom:769.577100px;}
.y1af{bottom:772.308300px;}
.yf1{bottom:780.879750px;}
.y78{bottom:782.271000px;}
.y5b{bottom:785.271000px;}
.y1c2{bottom:785.617200px;}
.y1ae{bottom:785.808300px;}
.y160{bottom:791.928300px;}
.y77{bottom:798.771000px;}
.y7e{bottom:801.771000px;}
.y1c1{bottom:802.117200px;}
.y15f{bottom:805.428300px;}
.y5a{bottom:807.771000px;}
.y76{bottom:815.271000px;}
.y7d{bottom:818.271000px;}
.yb{bottom:818.327100px;}
.y1c0{bottom:818.617200px;}
.y15e{bottom:821.271000px;}
.y137{bottom:822.877050px;}
.y75{bottom:831.771000px;}
.ya{bottom:831.827100px;}
.y7c{bottom:834.771000px;}
.y136{bottom:834.877050px;}
.y1bf{bottom:835.117200px;}
.y74{bottom:848.271000px;}
.y59{bottom:851.271000px;}
.y1be{bottom:851.617200px;}
.y9{bottom:854.327100px;}
.y135{bottom:857.374800px;}
.y133{bottom:857.773650px;}
.yac{bottom:860.271000px;}
.y73{bottom:864.771000px;}
.y58{bottom:867.771000px;}
.y1bd{bottom:868.117200px;}
.y134{bottom:871.824150px;}
.y132{bottom:872.023650px;}
.y8{bottom:880.052100px;}
.yee{bottom:880.848300px;}
.y72{bottom:881.271000px;}
.y57{bottom:884.271000px;}
.y1bc{bottom:884.617200px;}
.y131{bottom:886.273650px;}
.y71{bottom:897.771000px;}
.y130{bottom:900.723150px;}
.y56{bottom:900.771000px;}
.y12f{bottom:900.922650px;}
.y1bb{bottom:901.117200px;}
.y70{bottom:914.271000px;}
.y7{bottom:914.552100px;}
.y12e{bottom:915.172650px;}
.y55{bottom:917.271000px;}
.y1ba{bottom:917.617200px;}
.y6f{bottom:930.771000px;}
.y123{bottom:933.747000px;}
.y54{bottom:933.771000px;}
.y1b9{bottom:934.117200px;}
.y49{bottom:936.420000px;}
.y6e{bottom:947.271000px;}
.y129{bottom:948.747000px;}
.y6{bottom:949.052100px;}
.y53{bottom:950.271000px;}
.y1b8{bottom:950.617200px;}
.y126{bottom:956.821500px;}
.y128{bottom:963.747000px;}
.y52{bottom:966.771000px;}
.y1b7{bottom:967.117200px;}
.y125{bottom:971.821500px;}
.y127{bottom:978.747000px;}
.y51{bottom:983.271000px;}
.y5{bottom:983.552100px;}
.y1b6{bottom:983.617200px;}
.y124{bottom:986.821500px;}
.yaa{bottom:992.271000px;}
.y50{bottom:999.771000px;}
.y1b5{bottom:1000.117200px;}
.y12d{bottom:1001.821500px;}
.y4f{bottom:1016.271000px;}
.y1b4{bottom:1016.617200px;}
.y12c{bottom:1016.821500px;}
.y12b{bottom:1031.821500px;}
.y4e{bottom:1032.771000px;}
.y1b3{bottom:1033.117200px;}
.yc2{bottom:1035.771000px;}
.y12a{bottom:1046.821500px;}
.y4d{bottom:1049.271000px;}
.y1b2{bottom:1049.617200px;}
.y4{bottom:1058.286600px;}
.y4c{bottom:1065.771000px;}
.y1b1{bottom:1066.117200px;}
.y122{bottom:1068.771000px;}
.y3{bottom:1075.536600px;}
.y4b{bottom:1082.271000px;}
.y1b0{bottom:1082.617200px;}
.y2{bottom:1089.786600px;}
.y1{bottom:1113.036600px;}
.y4a{bottom:1122.569250px;}
.h1a{height:20.638800px;}
.h14{height:21.000000px;}
.h18{height:21.390970px;}
.h6{height:30.576000px;}
.hc{height:30.732000px;}
.hb{height:30.849000px;}
.h16{height:32.416601px;}
.h15{height:32.439397px;}
.h13{height:32.928000px;}
.h3{height:33.096000px;}
.h12{height:33.222000px;}
.hd{height:34.968750px;}
.h1d{height:35.280000px;}
.h1b{height:35.325000px;}
.h1c{height:35.595000px;}
.ha{height:36.691200px;}
.h11{height:36.738000px;}
.h8{height:36.878400px;}
.h19{height:36.975970px;}
.h5{height:37.084507px;}
.h2{height:37.968000px;}
.he{height:39.691200px;}
.h17{height:42.303806px;}
.h7{height:42.336000px;}
.h10{height:43.123500px;}
.hf{height:47.460000px;}
.h9{height:51.744000px;}
.h4{height:85.428000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:235.161000px;}
.w3{width:338.599500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x21{left:69.810150px;}
.x5{left:72.283500px;}
.xb{left:79.154550px;}
.x20{left:81.443850px;}
.x6{left:87.658500px;}
.x13{left:131.075700px;}
.x27{left:147.555900px;}
.x22{left:222.364800px;}
.x15{left:263.825700px;}
.x23{left:306.161400px;}
.x1e{left:322.433850px;}
.x1f{left:369.941700px;}
.x24{left:389.958000px;}
.x1d{left:396.170400px;}
.xc{left:455.704800px;}
.x7{left:464.208600px;}
.xd{left:471.079800px;}
.x1{left:473.957550px;}
.x11{left:477.387000px;}
.x8{left:479.583750px;}
.x28{left:482.208750px;}
.x12{left:489.962700px;}
.x25{left:512.148900px;}
.x17{left:517.191600px;}
.xf{left:529.107000px;}
.x18{left:548.660250px;}
.x3{left:572.788500px;}
.x10{left:575.432700px;}
.x19{left:616.365300px;}
.x2{left:618.906300px;}
.x4{left:632.981250px;}
.xe{left:636.284850px;}
.x14{left:644.912700px;}
.x1b{left:656.285550px;}
.x1a{left:681.724950px;}
.x1c{left:734.322900px;}
.x26{left:739.340550px;}
.x16{left:806.762700px;}
.x9{left:859.650000px;}
@media print{
.v4{vertical-align:-13.852800pt;}
.v3{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v1{vertical-align:13.852800pt;}
.ls33{letter-spacing:-20.749867pt;}
.ls48{letter-spacing:-3.546667pt;}
.ls15{letter-spacing:-1.955200pt;}
.ls6{letter-spacing:-1.706667pt;}
.ls4f{letter-spacing:-1.705600pt;}
.ls13{letter-spacing:-1.664000pt;}
.ls3d{letter-spacing:-1.580800pt;}
.ls12{letter-spacing:-1.539200pt;}
.ls36{letter-spacing:-1.497600pt;}
.ls17{letter-spacing:-1.456000pt;}
.ls50{letter-spacing:-1.248000pt;}
.ls79{letter-spacing:-1.200000pt;}
.ls78{letter-spacing:-1.160000pt;}
.ls5b{letter-spacing:-1.081600pt;}
.ls5c{letter-spacing:-1.040000pt;}
.ls5a{letter-spacing:-0.956800pt;}
.ls7b{letter-spacing:-0.920000pt;}
.ls59{letter-spacing:-0.873600pt;}
.ls47{letter-spacing:-0.832000pt;}
.ls51{letter-spacing:-0.748800pt;}
.ls3c{letter-spacing:-0.707200pt;}
.ls58{letter-spacing:-0.665600pt;}
.ls14{letter-spacing:-0.624000pt;}
.ls22{letter-spacing:-0.582400pt;}
.ls77{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.540800pt;}
.ls62{letter-spacing:-0.520000pt;}
.ls30{letter-spacing:-0.499200pt;}
.ls31{letter-spacing:-0.497997pt;}
.ls11{letter-spacing:-0.457600pt;}
.ls5f{letter-spacing:-0.440000pt;}
.lsd{letter-spacing:-0.416000pt;}
.lse{letter-spacing:-0.374400pt;}
.ls7a{letter-spacing:-0.360000pt;}
.ls1f{letter-spacing:-0.332800pt;}
.ls60{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.291200pt;}
.ls2b{letter-spacing:-0.290498pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls63{letter-spacing:-0.280000pt;}
.ls35{letter-spacing:-0.249600pt;}
.ls5e{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.208000pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.166400pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.148000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.124800pt;}
.ls5d{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.104000pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls7c{letter-spacing:-0.080000pt;}
.ls37{letter-spacing:-0.072758pt;}
.ls16{letter-spacing:-0.041600pt;}
.ls61{letter-spacing:-0.040000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.004800pt;}
.ls54{letter-spacing:0.020000pt;}
.ls56{letter-spacing:0.039467pt;}
.ls65{letter-spacing:0.040000pt;}
.ls1a{letter-spacing:0.041600pt;}
.ls67{letter-spacing:0.057067pt;}
.ls55{letter-spacing:0.060000pt;}
.ls39{letter-spacing:0.060800pt;}
.ls38{letter-spacing:0.061867pt;}
.ls29{letter-spacing:0.062400pt;}
.ls57{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.083200pt;}
.ls70{letter-spacing:0.120000pt;}
.ls2{letter-spacing:0.124800pt;}
.ls53{letter-spacing:0.140000pt;}
.ls71{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.166400pt;}
.ls25{letter-spacing:0.187200pt;}
.ls7d{letter-spacing:0.200000pt;}
.ls24{letter-spacing:0.208000pt;}
.ls3e{letter-spacing:0.211200pt;}
.ls3f{letter-spacing:0.234133pt;}
.ls74{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.249600pt;}
.ls6e{letter-spacing:0.280000pt;}
.ls3a{letter-spacing:0.291200pt;}
.ls19{letter-spacing:0.332800pt;}
.ls72{letter-spacing:0.360000pt;}
.ls28{letter-spacing:0.374400pt;}
.ls3b{letter-spacing:0.416000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.540800pt;}
.ls76{letter-spacing:0.560000pt;}
.ls43{letter-spacing:0.561600pt;}
.ls7e{letter-spacing:0.600000pt;}
.ls4c{letter-spacing:0.686400pt;}
.ls42{letter-spacing:0.707200pt;}
.ls4d{letter-spacing:0.748800pt;}
.ls4a{letter-spacing:0.832000pt;}
.ls45{letter-spacing:0.852800pt;}
.ls49{letter-spacing:0.915200pt;}
.ls44{letter-spacing:0.936000pt;}
.ls4b{letter-spacing:0.977600pt;}
.ls41{letter-spacing:1.040000pt;}
.ls75{letter-spacing:1.158400pt;}
.ls6c{letter-spacing:1.548267pt;}
.ls6a{letter-spacing:1.630400pt;}
.ls69{letter-spacing:1.944533pt;}
.ls52{letter-spacing:2.592533pt;}
.ls68{letter-spacing:3.252267pt;}
.ls6b{letter-spacing:3.606933pt;}
.ls66{letter-spacing:5.331733pt;}
.ls6d{letter-spacing:5.642667pt;}
.ls1b{letter-spacing:8.184533pt;}
.ls2e{letter-spacing:10.167435pt;}
.ls6f{letter-spacing:13.527467pt;}
.ls27{letter-spacing:14.465884pt;}
.ls73{letter-spacing:15.928533pt;}
.ls64{letter-spacing:29.163200pt;}
.ls18{letter-spacing:29.163733pt;}
.ls1{letter-spacing:35.659855pt;}
.ls2c{letter-spacing:40.835738pt;}
.ls32{letter-spacing:96.833312pt;}
.ls2d{letter-spacing:104.164331pt;}
.ls2f{letter-spacing:116.033254pt;}
.ls46{letter-spacing:124.670933pt;}
.ls26{letter-spacing:129.769666pt;}
.ls34{letter-spacing:313.246016pt;}
.ws8e{word-spacing:-313.246016pt;}
.ws65{word-spacing:-126.947684pt;}
.ws68{word-spacing:-126.565688pt;}
.ws88{word-spacing:-40.835738pt;}
.ws6{word-spacing:-17.189333pt;}
.wsbd{word-spacing:-15.626667pt;}
.ws5{word-spacing:-14.064000pt;}
.ws6c{word-spacing:-13.566667pt;}
.ws0{word-spacing:-12.501333pt;}
.ws119{word-spacing:-12.440000pt;}
.ws38{word-spacing:-12.313600pt;}
.ws117{word-spacing:-12.040000pt;}
.wsf9{word-spacing:-11.840000pt;}
.wsfa{word-spacing:-11.720000pt;}
.ws3a{word-spacing:-11.689600pt;}
.ws11a{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.564800pt;}
.wsb7{word-spacing:-11.523200pt;}
.ws1{word-spacing:-11.440000pt;}
.ws118{word-spacing:-11.360000pt;}
.ws63{word-spacing:-11.356800pt;}
.ws7{word-spacing:-11.148800pt;}
.ws6b{word-spacing:-11.024000pt;}
.wsf8{word-spacing:-11.000000pt;}
.wsc1{word-spacing:-10.938667pt;}
.ws116{word-spacing:-10.920000pt;}
.ws115{word-spacing:-10.640000pt;}
.wsf7{word-spacing:-10.608000pt;}
.ws114{word-spacing:-10.560000pt;}
.ws3{word-spacing:-9.637333pt;}
.ws4{word-spacing:-9.533333pt;}
.ws6a{word-spacing:-6.742278pt;}
.ws9e{word-spacing:-6.669520pt;}
.wsdb{word-spacing:-6.384000pt;}
.ws49{word-spacing:-6.364800pt;}
.ws110{word-spacing:-3.680000pt;}
.wsc7{word-spacing:-3.494400pt;}
.wsb1{word-spacing:-3.078400pt;}
.wsb3{word-spacing:-2.995200pt;}
.ws29{word-spacing:-2.496000pt;}
.wsf1{word-spacing:-2.454400pt;}
.ws14{word-spacing:-2.329600pt;}
.ws19{word-spacing:-2.288000pt;}
.ws11f{word-spacing:-2.280000pt;}
.ws97{word-spacing:-2.246400pt;}
.ws102{word-spacing:-2.240000pt;}
.wse0{word-spacing:-2.204800pt;}
.ws106{word-spacing:-2.200000pt;}
.ws8f{word-spacing:-2.163200pt;}
.wsa5{word-spacing:-2.121600pt;}
.ws3d{word-spacing:-2.080000pt;}
.wsc6{word-spacing:-2.038400pt;}
.ws4a{word-spacing:-1.996800pt;}
.ws85{word-spacing:-1.955200pt;}
.ws17{word-spacing:-1.913600pt;}
.ws108{word-spacing:-1.880000pt;}
.wsa7{word-spacing:-1.872000pt;}
.ws82{word-spacing:-1.830400pt;}
.wsac{word-spacing:-1.788800pt;}
.ws72{word-spacing:-1.705600pt;}
.ws70{word-spacing:-1.664000pt;}
.ws26{word-spacing:-1.622400pt;}
.wsfd{word-spacing:-1.580800pt;}
.ws78{word-spacing:-1.456000pt;}
.ws11b{word-spacing:-1.440000pt;}
.ws42{word-spacing:-1.414400pt;}
.ws84{word-spacing:-1.372800pt;}
.ws10c{word-spacing:-1.360000pt;}
.wsb4{word-spacing:-1.289600pt;}
.ws2f{word-spacing:-1.248000pt;}
.wsd9{word-spacing:-1.206400pt;}
.ws46{word-spacing:-1.164800pt;}
.ws61{word-spacing:-1.123200pt;}
.ws32{word-spacing:-1.081600pt;}
.wsf2{word-spacing:-1.040000pt;}
.ws55{word-spacing:-0.998400pt;}
.ws25{word-spacing:-0.956800pt;}
.ws75{word-spacing:-0.915200pt;}
.ws52{word-spacing:-0.873600pt;}
.ws48{word-spacing:-0.832000pt;}
.ws98{word-spacing:-0.790400pt;}
.ws7a{word-spacing:-0.665600pt;}
.wsd2{word-spacing:-0.624000pt;}
.ws10a{word-spacing:-0.600000pt;}
.ws5a{word-spacing:-0.582400pt;}
.ws13a{word-spacing:-0.560000pt;}
.wse{word-spacing:-0.540800pt;}
.ws7e{word-spacing:-0.499200pt;}
.ws53{word-spacing:-0.457600pt;}
.ws50{word-spacing:-0.416000pt;}
.wseb{word-spacing:-0.374400pt;}
.wse5{word-spacing:-0.332800pt;}
.wsd{word-spacing:-0.249600pt;}
.ws7b{word-spacing:-0.208000pt;}
.ws1c{word-spacing:-0.166400pt;}
.ws5e{word-spacing:-0.124800pt;}
.ws120{word-spacing:-0.120000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws10f{word-spacing:-0.080000pt;}
.ws39{word-spacing:-0.041600pt;}
.ws8{word-spacing:0.000000pt;}
.ws12e{word-spacing:0.040000pt;}
.ws4f{word-spacing:0.041600pt;}
.ws77{word-spacing:0.083200pt;}
.ws37{word-spacing:0.104000pt;}
.wsb{word-spacing:0.112000pt;}
.ws103{word-spacing:0.120000pt;}
.ws1d{word-spacing:0.124800pt;}
.wsa{word-spacing:0.128000pt;}
.ws111{word-spacing:0.160000pt;}
.wscb{word-spacing:0.166400pt;}
.ws43{word-spacing:0.176000pt;}
.ws129{word-spacing:0.200000pt;}
.ws95{word-spacing:0.208000pt;}
.wsd7{word-spacing:0.249600pt;}
.ws8c{word-spacing:0.290498pt;}
.wsd6{word-spacing:0.291200pt;}
.ws58{word-spacing:0.332800pt;}
.ws1a{word-spacing:0.374400pt;}
.ws2b{word-spacing:0.416000pt;}
.ws113{word-spacing:0.440000pt;}
.ws8b{word-spacing:0.497997pt;}
.wsa3{word-spacing:0.499200pt;}
.ws11d{word-spacing:0.560000pt;}
.ws5c{word-spacing:0.582400pt;}
.ws126{word-spacing:0.600000pt;}
.ws11{word-spacing:0.624000pt;}
.wsd4{word-spacing:0.665600pt;}
.ws13{word-spacing:0.707200pt;}
.ws4e{word-spacing:0.790400pt;}
.ws36{word-spacing:0.915200pt;}
.ws12d{word-spacing:0.920000pt;}
.wsa1{word-spacing:0.956800pt;}
.ws40{word-spacing:0.998400pt;}
.wse4{word-spacing:1.040000pt;}
.ws22{word-spacing:1.081600pt;}
.ws1e{word-spacing:1.123200pt;}
.ws104{word-spacing:1.160000pt;}
.wsa6{word-spacing:1.164800pt;}
.ws93{word-spacing:1.206400pt;}
.ws100{word-spacing:1.240000pt;}
.ws137{word-spacing:1.280000pt;}
.wsaa{word-spacing:1.289600pt;}
.ws54{word-spacing:1.331200pt;}
.wsbc{word-spacing:1.372800pt;}
.ws12{word-spacing:1.414400pt;}
.ws125{word-spacing:1.440000pt;}
.ws35{word-spacing:1.456000pt;}
.ws71{word-spacing:1.497600pt;}
.ws21{word-spacing:1.539200pt;}
.wsb8{word-spacing:1.580800pt;}
.ws3b{word-spacing:1.622400pt;}
.ws23{word-spacing:1.664000pt;}
.ws12f{word-spacing:1.680000pt;}
.ws45{word-spacing:1.705600pt;}
.ws9{word-spacing:1.706667pt;}
.ws4d{word-spacing:1.747200pt;}
.ws92{word-spacing:1.788800pt;}
.wsd1{word-spacing:1.830400pt;}
.wsa2{word-spacing:1.872000pt;}
.ws31{word-spacing:1.913600pt;}
.ws107{word-spacing:1.920000pt;}
.ws2a{word-spacing:1.955200pt;}
.ws6e{word-spacing:1.996800pt;}
.ws127{word-spacing:2.080000pt;}
.wsdf{word-spacing:2.121600pt;}
.ws47{word-spacing:2.163200pt;}
.wsfe{word-spacing:2.204800pt;}
.ws2c{word-spacing:2.246400pt;}
.wsab{word-spacing:2.288000pt;}
.ws59{word-spacing:2.329600pt;}
.ws24{word-spacing:2.371200pt;}
.ws44{word-spacing:2.412800pt;}
.ws5d{word-spacing:2.454400pt;}
.ws18{word-spacing:2.496000pt;}
.ws3e{word-spacing:2.537600pt;}
.ws123{word-spacing:2.560000pt;}
.ws74{word-spacing:2.579200pt;}
.ws128{word-spacing:2.600000pt;}
.wsf0{word-spacing:2.620800pt;}
.wsfc{word-spacing:2.704000pt;}
.ws101{word-spacing:2.720000pt;}
.ws33{word-spacing:2.745600pt;}
.ws1b{word-spacing:2.787200pt;}
.wsf{word-spacing:2.828800pt;}
.ws12c{word-spacing:2.880000pt;}
.ws76{word-spacing:2.912000pt;}
.ws94{word-spacing:2.953600pt;}
.wse2{word-spacing:2.995200pt;}
.ws64{word-spacing:3.058530pt;}
.wsef{word-spacing:3.078400pt;}
.ws62{word-spacing:3.120000pt;}
.ws80{word-spacing:3.244800pt;}
.ws12b{word-spacing:3.280000pt;}
.wsb9{word-spacing:3.286400pt;}
.ws60{word-spacing:3.328000pt;}
.ws124{word-spacing:3.360000pt;}
.ws4c{word-spacing:3.369600pt;}
.ws15{word-spacing:3.411200pt;}
.wsc9{word-spacing:3.494400pt;}
.ws28{word-spacing:3.536000pt;}
.wsd0{word-spacing:3.577600pt;}
.ws121{word-spacing:3.600000pt;}
.ws105{word-spacing:3.640000pt;}
.ws10{word-spacing:3.660800pt;}
.ws12a{word-spacing:3.680000pt;}
.wse1{word-spacing:3.702400pt;}
.ws51{word-spacing:3.744000pt;}
.ws2d{word-spacing:3.785600pt;}
.ws41{word-spacing:3.827200pt;}
.wsdd{word-spacing:3.868800pt;}
.ws5b{word-spacing:3.910400pt;}
.wse3{word-spacing:3.952000pt;}
.wsc8{word-spacing:3.993600pt;}
.wscc{word-spacing:4.035200pt;}
.ws4b{word-spacing:4.076800pt;}
.ws30{word-spacing:4.201600pt;}
.ws131{word-spacing:4.240000pt;}
.ws16{word-spacing:4.243200pt;}
.ws20{word-spacing:4.284800pt;}
.ws10b{word-spacing:4.320000pt;}
.wsa9{word-spacing:4.368000pt;}
.wse7{word-spacing:4.409600pt;}
.ws9a{word-spacing:4.451200pt;}
.ws11e{word-spacing:4.480000pt;}
.wsd5{word-spacing:4.492800pt;}
.ws7d{word-spacing:4.617600pt;}
.ws89{word-spacing:4.659200pt;}
.wsa4{word-spacing:4.742400pt;}
.wsb2{word-spacing:4.784000pt;}
.ws3f{word-spacing:4.825600pt;}
.wsf6{word-spacing:4.950400pt;}
.ws8a{word-spacing:4.992000pt;}
.wsae{word-spacing:5.075200pt;}
.ws81{word-spacing:5.116800pt;}
.ws11c{word-spacing:5.240000pt;}
.ws122{word-spacing:5.280000pt;}
.wsad{word-spacing:5.283200pt;}
.ws138{word-spacing:5.360000pt;}
.wsd3{word-spacing:5.408000pt;}
.wse6{word-spacing:5.449600pt;}
.wsbb{word-spacing:5.532800pt;}
.ws130{word-spacing:5.560000pt;}
.ws9c{word-spacing:5.574400pt;}
.ws10d{word-spacing:5.600000pt;}
.wsf5{word-spacing:5.616000pt;}
.ws10e{word-spacing:5.640000pt;}
.ws7c{word-spacing:5.740800pt;}
.ws112{word-spacing:5.800000pt;}
.ws5f{word-spacing:5.824000pt;}
.ws99{word-spacing:5.865600pt;}
.wscf{word-spacing:5.907200pt;}
.ws90{word-spacing:6.073600pt;}
.ws9f{word-spacing:6.115200pt;}
.wsdc{word-spacing:6.156800pt;}
.wsa8{word-spacing:6.406400pt;}
.wsaf{word-spacing:6.448000pt;}
.ws34{word-spacing:6.489600pt;}
.wsea{word-spacing:6.614400pt;}
.wsa0{word-spacing:6.988800pt;}
.wsb0{word-spacing:7.072000pt;}
.ws87{word-spacing:7.113600pt;}
.wsda{word-spacing:7.196800pt;}
.wsec{word-spacing:7.529600pt;}
.ws56{word-spacing:7.820800pt;}
.ws133{word-spacing:7.880000pt;}
.ws1f{word-spacing:7.904000pt;}
.ws57{word-spacing:7.945600pt;}
.ws2e{word-spacing:8.278400pt;}
.ws109{word-spacing:8.280000pt;}
.wsde{word-spacing:8.652800pt;}
.ws83{word-spacing:8.736000pt;}
.ws9d{word-spacing:8.902400pt;}
.wsce{word-spacing:9.027200pt;}
.ws134{word-spacing:9.360000pt;}
.ws27{word-spacing:9.484800pt;}
.ws6f{word-spacing:9.526400pt;}
.ws86{word-spacing:9.692800pt;}
.wsb6{word-spacing:9.817600pt;}
.wscd{word-spacing:9.942400pt;}
.ws7f{word-spacing:9.984000pt;}
.wsb5{word-spacing:10.316800pt;}
.ws9b{word-spacing:10.400000pt;}
.wse8{word-spacing:10.524800pt;}
.wsd8{word-spacing:10.649600pt;}
.ws73{word-spacing:10.940800pt;}
.ws136{word-spacing:11.000000pt;}
.wsed{word-spacing:11.148800pt;}
.ws79{word-spacing:11.398400pt;}
.wsc5{word-spacing:11.564800pt;}
.wsfb{word-spacing:11.772800pt;}
.wsf4{word-spacing:12.022400pt;}
.wse9{word-spacing:12.064000pt;}
.ws132{word-spacing:13.240000pt;}
.wsff{word-spacing:13.395200pt;}
.wsca{word-spacing:13.436800pt;}
.ws3c{word-spacing:14.227200pt;}
.wsba{word-spacing:14.560000pt;}
.wsf3{word-spacing:14.851200pt;}
.ws135{word-spacing:15.560000pt;}
.ws91{word-spacing:15.974400pt;}
.ws96{word-spacing:16.182400pt;}
.ws8d{word-spacing:20.749867pt;}
.wsee{word-spacing:21.174400pt;}
.ws139{word-spacing:21.680000pt;}
.ws6d{word-spacing:29.161600pt;}
.wsc4{word-spacing:43.922667pt;}
.ws66{word-spacing:44.537514pt;}
.wsc2{word-spacing:55.560533pt;}
.wsbe{word-spacing:75.459200pt;}
.wsbf{word-spacing:92.669333pt;}
.wsc0{word-spacing:117.019733pt;}
.ws69{word-spacing:138.941107pt;}
.ws67{word-spacing:204.093602pt;}
.wsc3{word-spacing:370.534400pt;}
._16{margin-left:-583.718649pt;}
._17{margin-left:-325.125344pt;}
._18{margin-left:-167.957721pt;}
._3c{margin-left:-24.844800pt;}
._3d{margin-left:-18.741867pt;}
._28{margin-left:-17.340000pt;}
._7{margin-left:-15.849600pt;}
._2b{margin-left:-14.102400pt;}
._d{margin-left:-10.400000pt;}
._b{margin-left:-9.169067pt;}
._c{margin-left:-8.028800pt;}
._27{margin-left:-7.047467pt;}
._6{margin-left:-6.090240pt;}
._3{margin-left:-4.977600pt;}
._1{margin-left:-4.033067pt;}
._5{margin-left:-3.060533pt;}
._0{margin-left:-1.813333pt;}
._4{margin-left:-0.895200pt;}
._2{width:0.958933pt;}
._8{width:2.275733pt;}
._2c{width:3.592533pt;}
._26{width:5.416107pt;}
._9{width:6.963733pt;}
._2a{width:8.345067pt;}
._25{width:9.349890pt;}
._29{width:10.950507pt;}
._20{width:13.852321pt;}
._23{width:20.268470pt;}
._19{width:22.613205pt;}
._24{width:23.999296pt;}
._a{width:29.164267pt;}
._e{width:30.238133pt;}
._1e{width:36.561265pt;}
._12{width:40.835738pt;}
._10{width:44.558264pt;}
._11{width:54.157152pt;}
._13{width:64.822583pt;}
._3a{width:66.278400pt;}
._38{width:67.447733pt;}
._31{width:70.323200pt;}
._1d{width:74.956818pt;}
._35{width:76.622400pt;}
._21{width:82.177482pt;}
._3b{width:85.107200pt;}
._32{width:86.915880pt;}
._1f{width:88.505987pt;}
._39{width:97.464533pt;}
._37{width:99.419733pt;}
._34{width:110.962667pt;}
._1b{width:113.891868pt;}
._36{width:116.889600pt;}
._2e{width:127.395733pt;}
._14{width:130.421212pt;}
._15{width:146.958856pt;}
._1c{width:150.154335pt;}
._30{width:155.718400pt;}
._2f{width:172.731733pt;}
._1a{width:249.454608pt;}
._22{width:273.234244pt;}
._f{width:312.036495pt;}
._33{width:383.533867pt;}
._2d{width:520.854400pt;}
.fs4{font-size:24.252800pt;}
.fs5{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fsa{font-size:41.499733pt;}
.fs3{font-size:41.600000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:49.333333pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:54.157333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:5.866800pt;}
.yab{bottom:6.666667pt;}
.y47{bottom:48.182267pt;}
.ycc{bottom:52.479867pt;}
.y7b{bottom:52.480000pt;}
.y185{bottom:52.498667pt;}
.y1ad{bottom:52.550933pt;}
.ya9{bottom:52.685333pt;}
.y15d{bottom:53.017600pt;}
.y145{bottom:55.352000pt;}
.yea{bottom:59.593867pt;}
.y46{bottom:60.848933pt;}
.y11b{bottom:63.448667pt;}
.y7a{bottom:64.480000pt;}
.y184{bottom:67.165333pt;}
.y1ac{bottom:67.217600pt;}
.ya8{bottom:67.352000pt;}
.y15c{bottom:67.684267pt;}
.y144{bottom:70.018667pt;}
.y48{bottom:73.527600pt;}
.ye9{bottom:74.260533pt;}
.y79{bottom:76.480000pt;}
.y11a{bottom:78.115333pt;}
.y183{bottom:81.832000pt;}
.y1ab{bottom:81.884267pt;}
.ya7{bottom:82.018667pt;}
.y15b{bottom:82.350933pt;}
.y143{bottom:84.685333pt;}
.y45{bottom:86.206267pt;}
.ye8{bottom:88.927200pt;}
.yed{bottom:91.593867pt;}
.y119{bottom:92.782000pt;}
.y182{bottom:96.498667pt;}
.y1aa{bottom:96.550933pt;}
.ya6{bottom:96.685333pt;}
.y15a{bottom:97.017600pt;}
.y142{bottom:99.352000pt;}
.ye7{bottom:103.593867pt;}
.y118{bottom:107.448667pt;}
.y1a9{bottom:111.217600pt;}
.ya5{bottom:111.352000pt;}
.y159{bottom:111.684267pt;}
.y141{bottom:114.018667pt;}
.y181{bottom:116.498667pt;}
.ye6{bottom:118.260533pt;}
.y44{bottom:120.396533pt;}
.y2f{bottom:120.735200pt;}
.y117{bottom:122.115333pt;}
.y1a8{bottom:125.884267pt;}
.ya4{bottom:126.018667pt;}
.y158{bottom:126.350933pt;}
.y140{bottom:128.685333pt;}
.ye5{bottom:132.927200pt;}
.y43{bottom:135.333200pt;}
.y2e{bottom:135.401867pt;}
.y116{bottom:136.782000pt;}
.y1a7{bottom:140.550933pt;}
.ya3{bottom:140.685333pt;}
.y157{bottom:141.017600pt;}
.y13f{bottom:143.352000pt;}
.ye4{bottom:147.593867pt;}
.y2d{bottom:150.068533pt;}
.y42{bottom:150.270000pt;}
.y115{bottom:151.448667pt;}
.y121{bottom:154.115333pt;}
.y1a6{bottom:155.217600pt;}
.ya2{bottom:155.352000pt;}
.y156{bottom:155.684267pt;}
.y180{bottom:155.832000pt;}
.y13e{bottom:158.018667pt;}
.ye3{bottom:162.260533pt;}
.y2c{bottom:164.735200pt;}
.y41{bottom:165.206800pt;}
.y114{bottom:166.115333pt;}
.y120{bottom:168.782000pt;}
.y1a5{bottom:169.884267pt;}
.ya1{bottom:170.018667pt;}
.y155{bottom:170.350933pt;}
.y17f{bottom:170.498667pt;}
.y13d{bottom:172.685333pt;}
.ye2{bottom:176.927200pt;}
.y2b{bottom:179.401867pt;}
.y40{bottom:180.143600pt;}
.y113{bottom:180.782000pt;}
.y1a4{bottom:184.550933pt;}
.ya0{bottom:184.685333pt;}
.y154{bottom:185.017600pt;}
.y17e{bottom:185.165333pt;}
.y13c{bottom:187.352000pt;}
.ye1{bottom:191.593867pt;}
.y2a{bottom:194.068533pt;}
.y3f{bottom:195.080267pt;}
.y112{bottom:195.448667pt;}
.y1a3{bottom:199.217600pt;}
.y9f{bottom:199.352000pt;}
.y153{bottom:199.684267pt;}
.y13b{bottom:202.018667pt;}
.y17d{bottom:205.165333pt;}
.ye0{bottom:206.260533pt;}
.y29{bottom:208.735200pt;}
.y3e{bottom:210.017067pt;}
.y111{bottom:210.115333pt;}
.y1a2{bottom:213.884267pt;}
.y9e{bottom:214.018667pt;}
.y152{bottom:214.350933pt;}
.y13a{bottom:216.685333pt;}
.ydf{bottom:220.927200pt;}
.y28{bottom:223.401867pt;}
.y110{bottom:224.782000pt;}
.y3d{bottom:224.953867pt;}
.y1a1{bottom:228.550933pt;}
.y9d{bottom:228.685333pt;}
.y151{bottom:229.017600pt;}
.y139{bottom:231.352000pt;}
.yde{bottom:235.593867pt;}
.y27{bottom:238.068533pt;}
.y10f{bottom:239.448667pt;}
.y3c{bottom:239.890533pt;}
.y1a0{bottom:243.217600pt;}
.y9c{bottom:243.352000pt;}
.y150{bottom:243.684267pt;}
.y17c{bottom:243.832000pt;}
.y138{bottom:246.018667pt;}
.ydd{bottom:250.260533pt;}
.y26{bottom:252.735200pt;}
.y10e{bottom:254.115333pt;}
.y3b{bottom:254.827333pt;}
.y19f{bottom:257.884267pt;}
.y9b{bottom:258.018667pt;}
.y14f{bottom:258.350933pt;}
.y17b{bottom:263.832000pt;}
.ydc{bottom:264.927200pt;}
.y25{bottom:267.401867pt;}
.y10d{bottom:268.782000pt;}
.y3a{bottom:269.764133pt;}
.y19e{bottom:272.550933pt;}
.y9a{bottom:272.685333pt;}
.y14e{bottom:273.017600pt;}
.y14a{bottom:278.016267pt;}
.ydb{bottom:279.593867pt;}
.y24{bottom:282.068533pt;}
.y10c{bottom:283.448667pt;}
.y39{bottom:284.700933pt;}
.y19d{bottom:287.217600pt;}
.y99{bottom:287.352000pt;}
.y14d{bottom:287.684267pt;}
.y149{bottom:290.016267pt;}
.yc1{bottom:290.018667pt;}
.yda{bottom:294.260533pt;}
.y23{bottom:296.735200pt;}
.y10b{bottom:298.115333pt;}
.y38{bottom:299.637600pt;}
.y19c{bottom:301.884267pt;}
.y148{bottom:302.016267pt;}
.y98{bottom:302.018667pt;}
.y14c{bottom:302.350933pt;}
.y17a{bottom:302.498667pt;}
.yd9{bottom:308.927200pt;}
.y22{bottom:311.401867pt;}
.y10a{bottom:312.782000pt;}
.y147{bottom:314.016267pt;}
.y37{bottom:314.574400pt;}
.y19b{bottom:316.550933pt;}
.y97{bottom:316.685333pt;}
.y14b{bottom:317.017600pt;}
.y179{bottom:317.165333pt;}
.yd8{bottom:323.593867pt;}
.yc0{bottom:324.685333pt;}
.y146{bottom:326.016267pt;}
.y21{bottom:326.068533pt;}
.y109{bottom:327.448667pt;}
.y36{bottom:329.511200pt;}
.y19a{bottom:331.217600pt;}
.y96{bottom:331.352000pt;}
.yd7{bottom:338.260533pt;}
.ybf{bottom:339.352000pt;}
.y20{bottom:340.735200pt;}
.y108{bottom:342.115333pt;}
.y35{bottom:344.447867pt;}
.y199{bottom:345.884267pt;}
.y95{bottom:346.018667pt;}
.y178{bottom:346.498667pt;}
.yd5{bottom:352.927200pt;}
.y162{bottom:353.015333pt;}
.ybe{bottom:354.018667pt;}
.y1f{bottom:355.401867pt;}
.yd6{bottom:356.390400pt;}
.y107{bottom:356.782000pt;}
.y34{bottom:359.384667pt;}
.y198{bottom:360.550933pt;}
.y94{bottom:360.685333pt;}
.y177{bottom:361.165333pt;}
.y161{bottom:365.015333pt;}
.yd4{bottom:367.593867pt;}
.ybd{bottom:368.685333pt;}
.y1e{bottom:370.068533pt;}
.yec{bottom:370.260533pt;}
.y106{bottom:371.448667pt;}
.y33{bottom:374.321467pt;}
.y197{bottom:375.217600pt;}
.y93{bottom:375.352000pt;}
.y176{bottom:375.832000pt;}
.yd2{bottom:382.260533pt;}
.ybc{bottom:383.352000pt;}
.y1d{bottom:384.735200pt;}
.yd3{bottom:385.723733pt;}
.y11f{bottom:386.115333pt;}
.yeb{bottom:387.593867pt;}
.y105{bottom:388.782000pt;}
.y32{bottom:389.258267pt;}
.y196{bottom:389.884267pt;}
.y92{bottom:390.018667pt;}
.y175{bottom:390.498667pt;}
.yd0{bottom:396.927200pt;}
.ybb{bottom:398.018667pt;}
.y1c{bottom:399.401867pt;}
.yd1{bottom:400.390400pt;}
.y11e{bottom:400.782000pt;}
.y31{bottom:404.194933pt;}
.y195{bottom:404.550933pt;}
.y91{bottom:404.685333pt;}
.y174{bottom:405.165333pt;}
.ycf{bottom:411.593867pt;}
.yba{bottom:412.685333pt;}
.y1b{bottom:414.068533pt;}
.y104{bottom:415.448667pt;}
.y30{bottom:419.131733pt;}
.y194{bottom:419.217600pt;}
.y90{bottom:419.352000pt;}
.y173{bottom:419.832000pt;}
.ycd{bottom:426.260533pt;}
.yb9{bottom:427.352000pt;}
.yce{bottom:429.723733pt;}
.y103{bottom:430.115333pt;}
.y6d{bottom:431.352000pt;}
.y11d{bottom:432.782000pt;}
.y193{bottom:433.884267pt;}
.y8f{bottom:434.018667pt;}
.y1a{bottom:434.068533pt;}
.y172{bottom:434.498667pt;}
.yb8{bottom:442.018667pt;}
.y102{bottom:444.782000pt;}
.y6c{bottom:446.018667pt;}
.y192{bottom:448.550933pt;}
.y8e{bottom:448.685333pt;}
.y171{bottom:449.165333pt;}
.ycb{bottom:452.148667pt;}
.yb7{bottom:456.685333pt;}
.y101{bottom:459.448667pt;}
.y6b{bottom:460.685333pt;}
.yf0{bottom:460.924667pt;}
.y191{bottom:463.217600pt;}
.y8d{bottom:463.352000pt;}
.y170{bottom:463.832000pt;}
.yca{bottom:466.815333pt;}
.yb6{bottom:471.352000pt;}
.yef{bottom:472.924667pt;}
.y100{bottom:474.115333pt;}
.y6a{bottom:475.352000pt;}
.y190{bottom:477.884267pt;}
.y8c{bottom:478.018667pt;}
.y16f{bottom:478.498667pt;}
.yb5{bottom:486.018667pt;}
.yff{bottom:488.782000pt;}
.y69{bottom:490.018667pt;}
.y18f{bottom:492.550933pt;}
.y8b{bottom:492.685333pt;}
.y16e{bottom:493.165333pt;}
.yc9{bottom:496.148667pt;}
.yb4{bottom:500.685333pt;}
.yfe{bottom:503.448667pt;}
.y68{bottom:504.685333pt;}
.y19{bottom:504.735200pt;}
.y18e{bottom:507.217600pt;}
.y8a{bottom:507.352000pt;}
.y16d{bottom:507.832000pt;}
.yc8{bottom:510.815333pt;}
.yb3{bottom:515.352000pt;}
.yfd{bottom:518.115333pt;}
.y67{bottom:519.352000pt;}
.y18d{bottom:521.884267pt;}
.y89{bottom:522.018667pt;}
.y16c{bottom:522.498667pt;}
.y18{bottom:525.401867pt;}
.yc7{bottom:525.482000pt;}
.yb2{bottom:530.018667pt;}
.yfc{bottom:532.782000pt;}
.y66{bottom:534.018667pt;}
.y18c{bottom:536.550933pt;}
.y88{bottom:536.685333pt;}
.y16b{bottom:537.165333pt;}
.y17{bottom:538.068533pt;}
.yb1{bottom:547.352000pt;}
.yfb{bottom:547.448667pt;}
.y65{bottom:548.685333pt;}
.y16{bottom:550.735200pt;}
.y18b{bottom:551.217600pt;}
.y87{bottom:551.352000pt;}
.y1cc{bottom:551.659600pt;}
.y16a{bottom:551.832000pt;}
.yfa{bottom:562.115333pt;}
.y64{bottom:563.352000pt;}
.y15{bottom:563.401867pt;}
.y18a{bottom:565.884267pt;}
.y86{bottom:566.018667pt;}
.y1cb{bottom:566.326267pt;}
.y169{bottom:566.498667pt;}
.y14{bottom:576.068533pt;}
.yf9{bottom:576.782000pt;}
.y63{bottom:578.018667pt;}
.y85{bottom:580.685333pt;}
.y1ca{bottom:580.992933pt;}
.y168{bottom:581.165333pt;}
.y189{bottom:585.884267pt;}
.y13{bottom:588.735200pt;}
.yf8{bottom:591.448667pt;}
.y62{bottom:592.685333pt;}
.y84{bottom:595.352000pt;}
.y1c9{bottom:595.659600pt;}
.y167{bottom:595.832000pt;}
.y11c{bottom:596.782000pt;}
.yc6{bottom:598.018667pt;}
.y12{bottom:601.401867pt;}
.yf7{bottom:606.115333pt;}
.y61{bottom:607.352000pt;}
.y83{bottom:610.018667pt;}
.y1c8{bottom:610.326267pt;}
.y166{bottom:610.498667pt;}
.y11{bottom:614.068533pt;}
.yc5{bottom:615.352000pt;}
.yf6{bottom:620.782000pt;}
.y188{bottom:621.884267pt;}
.y60{bottom:622.018667pt;}
.yaf{bottom:624.685333pt;}
.y1c7{bottom:624.992933pt;}
.y165{bottom:625.165333pt;}
.y10{bottom:626.735200pt;}
.y82{bottom:627.352000pt;}
.yb0{bottom:628.148667pt;}
.yc4{bottom:635.352000pt;}
.yf5{bottom:635.448667pt;}
.y187{bottom:636.550933pt;}
.y5f{bottom:636.685333pt;}
.yae{bottom:639.352000pt;}
.yf{bottom:639.401867pt;}
.y1c6{bottom:639.659600pt;}
.y164{bottom:639.832000pt;}
.yc3{bottom:642.018667pt;}
.yf4{bottom:650.115333pt;}
.y5e{bottom:651.352000pt;}
.ye{bottom:652.068533pt;}
.y81{bottom:654.018667pt;}
.y1c5{bottom:654.326267pt;}
.y163{bottom:654.498667pt;}
.y186{bottom:656.550933pt;}
.yd{bottom:664.735200pt;}
.yf3{bottom:664.782000pt;}
.y5d{bottom:666.018667pt;}
.y80{bottom:668.685333pt;}
.y1c4{bottom:668.992933pt;}
.yf2{bottom:679.448667pt;}
.y5c{bottom:680.685333pt;}
.y7f{bottom:683.352000pt;}
.y1c3{bottom:683.659733pt;}
.yc{bottom:684.068533pt;}
.y1af{bottom:686.496267pt;}
.yf1{bottom:694.115333pt;}
.y78{bottom:695.352000pt;}
.y5b{bottom:698.018667pt;}
.y1c2{bottom:698.326400pt;}
.y1ae{bottom:698.496267pt;}
.y160{bottom:703.936267pt;}
.y77{bottom:710.018667pt;}
.y7e{bottom:712.685333pt;}
.y1c1{bottom:712.993067pt;}
.y15f{bottom:715.936267pt;}
.y5a{bottom:718.018667pt;}
.y76{bottom:724.685333pt;}
.y7d{bottom:727.352000pt;}
.yb{bottom:727.401867pt;}
.y1c0{bottom:727.659733pt;}
.y15e{bottom:730.018667pt;}
.y137{bottom:731.446267pt;}
.y75{bottom:739.352000pt;}
.ya{bottom:739.401867pt;}
.y7c{bottom:742.018667pt;}
.y136{bottom:742.112933pt;}
.y1bf{bottom:742.326400pt;}
.y74{bottom:754.018667pt;}
.y59{bottom:756.685333pt;}
.y1be{bottom:756.993067pt;}
.y9{bottom:759.401867pt;}
.y135{bottom:762.110933pt;}
.y133{bottom:762.465467pt;}
.yac{bottom:764.685333pt;}
.y73{bottom:768.685333pt;}
.y58{bottom:771.352000pt;}
.y1bd{bottom:771.659733pt;}
.y134{bottom:774.954800pt;}
.y132{bottom:775.132133pt;}
.y8{bottom:782.268533pt;}
.yee{bottom:782.976267pt;}
.y72{bottom:783.352000pt;}
.y57{bottom:786.018667pt;}
.y1bc{bottom:786.326400pt;}
.y131{bottom:787.798800pt;}
.y71{bottom:798.018667pt;}
.y130{bottom:800.642800pt;}
.y56{bottom:800.685333pt;}
.y12f{bottom:800.820133pt;}
.y1bb{bottom:800.993067pt;}
.y70{bottom:812.685333pt;}
.y7{bottom:812.935200pt;}
.y12e{bottom:813.486800pt;}
.y55{bottom:815.352000pt;}
.y1ba{bottom:815.659733pt;}
.y6f{bottom:827.352000pt;}
.y123{bottom:829.997333pt;}
.y54{bottom:830.018667pt;}
.y1b9{bottom:830.326400pt;}
.y49{bottom:832.373333pt;}
.y6e{bottom:842.018667pt;}
.y129{bottom:843.330667pt;}
.y6{bottom:843.601867pt;}
.y53{bottom:844.685333pt;}
.y1b8{bottom:844.993067pt;}
.y126{bottom:850.508000pt;}
.y128{bottom:856.664000pt;}
.y52{bottom:859.352000pt;}
.y1b7{bottom:859.659733pt;}
.y125{bottom:863.841333pt;}
.y127{bottom:869.997333pt;}
.y51{bottom:874.018667pt;}
.y5{bottom:874.268533pt;}
.y1b6{bottom:874.326400pt;}
.y124{bottom:877.174667pt;}
.yaa{bottom:882.018667pt;}
.y50{bottom:888.685333pt;}
.y1b5{bottom:888.993067pt;}
.y12d{bottom:890.508000pt;}
.y4f{bottom:903.352000pt;}
.y1b4{bottom:903.659733pt;}
.y12c{bottom:903.841333pt;}
.y12b{bottom:917.174667pt;}
.y4e{bottom:918.018667pt;}
.y1b3{bottom:918.326400pt;}
.yc2{bottom:920.685333pt;}
.y12a{bottom:930.508000pt;}
.y4d{bottom:932.685333pt;}
.y1b2{bottom:932.993067pt;}
.y4{bottom:940.699200pt;}
.y4c{bottom:947.352000pt;}
.y1b1{bottom:947.659733pt;}
.y122{bottom:950.018667pt;}
.y3{bottom:956.032533pt;}
.y4b{bottom:962.018667pt;}
.y1b0{bottom:962.326400pt;}
.y2{bottom:968.699200pt;}
.y1{bottom:989.365867pt;}
.y4a{bottom:997.839333pt;}
.h1a{height:18.345600pt;}
.h14{height:18.666667pt;}
.h18{height:19.014195pt;}
.h6{height:27.178667pt;}
.hc{height:27.317333pt;}
.hb{height:27.421333pt;}
.h16{height:28.814756pt;}
.h15{height:28.835020pt;}
.h13{height:29.269333pt;}
.h3{height:29.418667pt;}
.h12{height:29.530667pt;}
.hd{height:31.083333pt;}
.h1d{height:31.360000pt;}
.h1b{height:31.400000pt;}
.h1c{height:31.640000pt;}
.ha{height:32.614400pt;}
.h11{height:32.656000pt;}
.h8{height:32.780800pt;}
.h19{height:32.867529pt;}
.h5{height:32.964006pt;}
.h2{height:33.749333pt;}
.he{height:35.281067pt;}
.h17{height:37.603383pt;}
.h7{height:37.632000pt;}
.h10{height:38.332000pt;}
.hf{height:42.186667pt;}
.h9{height:45.994667pt;}
.h4{height:75.936000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:209.032000pt;}
.w3{width:300.977333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x21{left:62.053467pt;}
.x5{left:64.252000pt;}
.xb{left:70.359600pt;}
.x20{left:72.394533pt;}
.x6{left:77.918667pt;}
.x13{left:116.511733pt;}
.x27{left:131.160800pt;}
.x22{left:197.657600pt;}
.x15{left:234.511733pt;}
.x23{left:272.143467pt;}
.x1e{left:286.607867pt;}
.x1f{left:328.837067pt;}
.x24{left:346.629333pt;}
.x1d{left:352.151467pt;}
.xc{left:405.070933pt;}
.x7{left:412.629867pt;}
.xd{left:418.737600pt;}
.x1{left:421.295600pt;}
.x11{left:424.344000pt;}
.x8{left:426.296667pt;}
.x28{left:428.630000pt;}
.x12{left:435.522400pt;}
.x25{left:455.243467pt;}
.x17{left:459.725867pt;}
.xf{left:470.317333pt;}
.x18{left:487.698000pt;}
.x3{left:509.145333pt;}
.x10{left:511.495733pt;}
.x19{left:547.880267pt;}
.x2{left:550.138933pt;}
.x4{left:562.650000pt;}
.xe{left:565.586533pt;}
.x14{left:573.255733pt;}
.x1b{left:583.364933pt;}
.x1a{left:605.977733pt;}
.x1c{left:652.731467pt;}
.x26{left:657.191600pt;}
.x16{left:717.122400pt;}
.x9{left:764.133333pt;}
}




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